-
-
Notifications
You must be signed in to change notification settings - Fork 16
Description
First of all, thank you for considering the solution for the "Frontmatter rendering" issue discussed previously.
I am writing to report a visual rendering glitch regarding Headers inside Bullet Points.
In my workflow (to maintain a clean visual hierarchy), I often nest headers within list items, like this:
- # Heading 1
- ## Heading 2
- ### Heading 3
- Sample [[Text]]
In the Influx view, the header text drops to the next line below the bullet point, creating a large, ugly vertical gap. It seems the header is being rendered as a block element starting on a new line rather than inline with the bullet.
The header should be rendered inline, immediately after the bullet point, just as it appears in the standard Obsidian preview or other outliner tools.
This is likely a CSS display issue where the header tags (h1-h6) inside the list item (li) need to be set to display: inline; or display: inline-block; within the Influx container context to prevent the line break.
Thanks for your hard work!