You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: handle checkbox rendering in single line nested lists
## Details
Issue: #659
We render custom checkboxes by tracking the row in which they appear on
and if that matches the start of a list item a checkbox is shown.
However this does not properly handle the ability to nest list items all
in one line, i.e. `- - - [-] triply nested custom checkbox`.
Currently if this happens all of the marker nodes end up hidden, which
is not the correct behavior. The fix is to add a check that the checkbox
node starts immediately after the list item's marker node. Since the
marker node absorbs additional space we don't need to do anything
special to handle different amounts of whitespace. This should make the
behavior between custom and regular checkboxes consistent as regular
checkboxes must be at the start of a list according to the parser.
- add snacks.nvim image as conflict if latex is enabled [dcb7751](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/dcb77511efb1665b5073d8396a0033b3e4d680f6)
0 commit comments