Please add possibility to avoid having `collapsed:: true` inside the page

It’s very annoying when you try to view the page out of Logseq (in Obsidian or GitHub, for example).

By the way, I’ve found similar request, but there is closed and I don’t understand why.

I need this too! Makes very bad to read in other apps.

I need this too. It would be good if Logseq could cache for itself when a bullet is collapsed and not save it in the file.

1 Like

Yes that an issue, better keep the markdown file clean. I’m not sure how they would keep track of this info though.

Maybe just don’t keep track of it. An option to configure the whole graph or individual pages as being in “compatibility mode”

Yeah we all need that, even numbered list::true

The coming database version could properly address that.

A workaround is to use CSS snippets in Obsidian to hide the offending text. Depending on your workflow, this may also hide other things that you want to see, but for my purposes it provides a satisfactory solution. In Obsidian, I use the following CSS:

div.HyperMD-list-line.HyperMD-list-line-1.HyperMD-list-line-nobullet.cm-line {
	display:none;
}

div.HyperMD-list-line.HyperMD-list-line-2.HyperMD-list-line-nobullet.cm-line {
	display:none;
}

As far as I understand, this tells Obsidian to hide lines that don’t begin with bullets. Since all the text I want to see from LogSeq is automatically bulleted (with hyphen), this takes care of the issue for me.