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
markedjs/marked#488
I'm trying to add pagination to individual pages, like so:
--- --- <div class="page-break"> ## Introduction Paragraph. </div> <div class="page-break"> ## Setup Paragraph. </div>
But it displays the headings as raw text. Using span will fix the headings, but displays a </span> as raw text.
</span>
It's mentioned in the linked issue that some markdown implementations do it this way:
<div markdown="1"> # Heading </div>
If there's no solution, do you know of any way supported by github pages?
The text was updated successfully, but these errors were encountered:
I don't see the problem since kramdown already supports the markdown="1" attribute. Your sample will result in the following output:
markdown="1"
<div> <h1 id="heading">Heading</h1> </div>
Sorry, something went wrong.
gettalong
No branches or pull requests
markedjs/marked#488
I'm trying to add pagination to individual pages, like so:
But it displays the headings as raw text. Using span will fix the headings, but displays a
</span>
as raw text.It's mentioned in the linked issue that some markdown implementations do it this way:
If there's no solution, do you know of any way supported by github pages?
The text was updated successfully, but these errors were encountered: