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
Hi, I have a following usecase:
H1 Package.name H2 SubPackage.name (showdown.makeHtml(SubPackage.description))
So it would be great if I could call showdown.makeHtml(SubPackage.description,3) so that in case there is following code in SubPackage.description
showdown.makeHtml(SubPackage.description,3)
SubPackage.description
\#Given \#When \#Then
I could get output like this: H1 Package.name H2 SubPackage.name H3 Given H3 When H3 Then
The text was updated successfully, but these errors were encountered:
showdownjs#69 Header level start
f58127d
b84ac67
Added this feature in b84ac67
To set the header level start to 3 (<h3>) just pass it as an option. Example:
<h3>
var conv = new showdown.Converter({headerLevelStart: 3})
Sorry, something went wrong.
No branches or pull requests
Hi,
I have a following usecase:
So it would be great if I could call
showdown.makeHtml(SubPackage.description,3)
so that in case there is following code in
SubPackage.description
I could get output like this:
H1 Package.name
H2 SubPackage.name
H3 Given
H3 When
H3 Then
The text was updated successfully, but these errors were encountered: