Replies: 1 comment
-
The numbers comes from the following:
You can add CSS to your generated pages using The custom CSS should set content for .view h1:before { content: unset; }
.view h2:before { content: unset; }
.view h3:before { content: unset; }
.view h4:before { content: unset; }
.view h5:before { content: unset; }
.view h6:before { content: unset; } |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When the html is generated it seems like the headings are being converted into an ordered list. Is there a way to avoid this?
For example if I have this markdown:
It will be rendered like this:
1. Hello World
1.1 This is heading 2
Beta Was this translation helpful? Give feedback.
All reactions