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
For example:
= A title :sectnums!: == Disclaimer :sectnums: == Section A
currently renders as
<div class="sect1"> <h2 id="_disclaimer">Disclaimer</h2> <div class="sectionbody"> </div> </div> <div class="sect1"> <h2 id="_section_a">Section A</h2> <div class="sectionbody"> </div> </div>
instead of
<div class="sect1"> <h2 id="_disclaimer">Disclaimer</h2> <div class="sectionbody"> </div> </div> <div class="sect1"> <h2 id="_section_a">1. Section A</h2> <div class="sectionbody"> </div> </div>
The text was updated successfully, but these errors were encountered:
fix(renderer): section numbering disabled and re-enabled
627e0eb
also, moved logix to traverse the document in 'pkg/types' Fixes bytesparadise#1039 Signed-off-by: Xavier Coulon <xcoulon@redhat.com>
fix(renderer): section numbering disabled and re-enabled (#1040)
b8e1fb4
also, moved logix to traverse the document in 'pkg/types' Fixes #1039 Signed-off-by: Xavier Coulon <xcoulon@redhat.com>
xcoulon
Successfully merging a pull request may close this issue.
For example:
currently renders as
instead of
The text was updated successfully, but these errors were encountered: