-
How can I make the table of content appear for each post in my blog like this? markdown_extensions:
- toc:
permalink: true
plugins:
- blog:
blog_dir: .
blog_toc: true
post_date_format: full
archive_toc: true
categories_toc: true
pagination_format: "$link_first $link_previous ~2~ $link_next $link_last"
pagination_keep_content: true
draft_if_future_date: true |
Beta Was this translation helpful? Give feedback.
Answered by
squidfunk
Sep 13, 2023
Replies: 1 comment 1 reply
-
You seem to have two # Post title
## Section 1
## Section 2
### Section 2a |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
RonaldLN
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You seem to have two
h1
headlines – we only support oneh1
, so the rest need to beh2
etc. Try the following: