Always display headings and lists fold arrows in Reading view

Continuing the discussion from Fold arrow options, I have implemented the following snippet by @ariehen to always display folding arrows (>) inside notes:

This works perfectly in the Edit view of Obsidian but doesn’t keep them always displayed in Reading view.

Is there an easy edit to the snippet above, or another solution, to always display folding arrows in Reading view as well?

This seems to do the trick in both live preview and reading view:

.markdown-source-view.mod-cm6 .cm-fold-indicator .collapse-indicator,
.collapse-indicator {
  opacity: 1;
}

It doesn’t do anything to shift position of stuff, it just shows them at their current position.

2 Likes

Works great, thanks!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.