markbind
markbind copied to clipboard
Adjust spacing between bullet points
v1.13.0
Current:
Problem: too much space above subpoint, and too little between main points
Seems like an issue with the md
, the extra spacing occurs because newlines are left between bullet points:
When the newlines are removed it renders properly:
This is consistent with other lists in the page, for example this one lower down:
It might be better to go through the mds and remove all the extra newlines rather than changing the code. If we want some extra spacing between bullet points maybe we can add a few custom css entries?
If we want some extra spacing between bullet points maybe we can add a few custom css entries?
Can you briefly describe how it can be attained with css?
Something like this?
li ul, li ol {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
I have no idea how this would affect other everything else, though, I'm not too familiar with css...
I see. It is a bit odd though, as the extra space appears at a different place from the blank line. The blank line improves the readability of the source code but reduces the readability of the rendered list :-p
@damithc after using MarkBind for so many years, what do you think of this issue? I personally feel that since there are ample workarounds, if this does not affect usual operations I would be up to close this issue.
@damithc after using MarkBind for so many years, what do you think of this issue? I personally feel that since there are ample workarounds, if this does not affect usual operations I would be up to close this issue.
@kaixin-hc It still bugs me but I've gotten used to it now. Seems like not easy to fix anyway.