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
MyST doesn’t like that and throws a warning. I’d like to stay warning-free without spuriously ignoring warnings.
I filed #664, but a better solution for this is (and would have been for #648) to add a “initial section depth” config option for markdown instead of allowing users to customize the title section depth while not adapting the other sections.
We can kinda hack this in with the current solution as well:
MyST doesn’t like that and throws a warning. I’d like to stay warning-free without spuriously ignoring warnings.
I filed #664, but a better solution for this is (and would have been for #648) to add a “initial section depth” config option for markdown instead of allowing users to customize the title section depth while not adapting the other sections.
We can kinda hack this in with the current solution as well:
and the template could read for e.g. the section header:
{{ "#" * depth["section"] }} {{section}}
and for the category header:
alternative implementation
or less complex code
and more complex template
The text was updated successfully, but these errors were encountered: