Remove live preview for bullet points

I am interested in changing the style for bullet points e.g. dashes instead of dots and less spacing between rows.
this could be done by removing live preview on lists ?
any other solution with css would be nice
thanks!

u can refer here

that works for style, thanks!
any idea for reducing space between rows?

space between rows can be tricky for editing view. but assuming u are asking for bullet lists, here are the snippet i use personally. adjust the 1.3em to higher or lower to make it more gap or less.

.mod-cm6 .HyperMD-list-line.cm-line,
.markdown-rendered ul li {
    line-height: 1.3em;
    padding-top: 0.2em;
    padding-bottom: 0.1em;
}

if you want to apply to more than just bullet lists rows, then u can use the following. adjust the 1.3em to higher or lower to make it more gap or less.

.markdown-source-view.mod-cm6 .cm-scroller,
.markdown-preview-view {
    --line-height: 1.3em;
}

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