We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With inheritHeadingDepth being true.
Let a top-level file be:
# Some first level heading {!sub/Subsection_1.md!} {!task/Subsection_2.md!} {!task/Subsection_3.md!}
And let each task/Subection_X.md be:
# Some heading <X> Some text.
Then, I would expect the result to be:
# Some first level heading ## Some heading 1 Some text. ## Some heading 2 Some text. ## Some heading 3 Some text.
But, the actual result is:
# Some first level heading ## Some heading 1 Some text. ### Some heading 2 Some text. #### Some heading 3 Some text.
With the current implementation of inheritHeadingDepth, it is impossible to include several sections on the same level.
Current workaround probably is to move the heading from the sections into the parent file.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With inheritHeadingDepth being true.
Let a top-level file be:
# Some first level heading {!sub/Subsection_1.md!} {!task/Subsection_2.md!} {!task/Subsection_3.md!}
And let each task/Subection_X.md be:
# Some heading <X> Some text.
Then, I would expect the result to be:
But, the actual result is:
With the current implementation of inheritHeadingDepth, it is impossible to include several sections on the same level.
Current workaround probably is to move the heading from the sections into the parent file.
The text was updated successfully, but these errors were encountered: