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
idprefix
Generated section id in libasciidoc needs to support the idprefix document attribute (with a default to _)
_
For example:
:idprefix: id_ == Section B
must give the following output:
<h2 id="id_section_b">Section B</h2>
vs
<h2 id="_section_b">Section B</h2>
when no ideprefix attribute is specified
ideprefix
The text was updated successfully, but these errors were encountered:
feat(parser/renderer): support element ID prefix
cff472f
Fixes bytesparadise#300 Signed-off-by: Xavier Coulon <[email protected]>
d2300d8
feat(parser/renderer): support element ID prefix (#302)
9780fef
Fixes #300 Signed-off-by: Xavier Coulon <[email protected]>
xcoulon
No branches or pull requests
Generated section id in libasciidoc needs to support the
idprefix
document attribute (with a default to_
)For example:
must give the following output:
vs
when no
ideprefix
attribute is specifiedThe text was updated successfully, but these errors were encountered: