Custom list indent width with indentation guides

I’d like live preview (and source view) to present nested list indented at least as deeply as reading view, preferably providing a setting for both that can be set to any custom amount. All this, while preserving indentation lines, that have been recently added to the core app.

There have been numerous requests for this, this one being the most recent I found. However these all broke eventually. The answer accepted to this last one was a flawed hack that became more obsolete with v0.14.

Even if this doesn’t make it into core, I’d be relieved to have a workable, up to date custom CSS snippet that addresses all the concerns listed above.

The best I could do is switch to tabs from spaces as indents, set tab size to 8, and tweak reading view with a little CSS to align. Not customizable, but wide enough indents that more or less align in both views.

ul {
  padding-left: 2em;
}

That said I’d still like this issue properly addressed. This and other edge cases (like the broken two spaces) make all the indent options superfluous, as none of them work predictably other than tabs.

This is basically resolved in v0.16.
There’s a variable in app.css now called --list-indent that affects all views, that can be modified in snippets. You still need to use tabs for it to work properly, but that is another issue. The snippet above is not needed, and the tab size settings seems to affect only code blocks and the like.

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