-
-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
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
Options to disable automatic header #ids #61
Comments
Any ideas? |
Guys, need any help to solving the problem. |
I found the issue: |
(Enabled by default for backward compatibility) hexojs#61
Done #106 |
When we write in markdown file something like this:
### Heading
By default it will parse to:
<h3 id="Heading"><a href="#Heading" class="headerlink" title="Heading"></a>Heading</h3>
Marked parser has a feature to disable the automatic header ids in its advanced options, just set the "headerIds" to false and its ok.
So do we have something like this ?
Or what i need to do to render normal view Headings, like
<h3>Heading</h3>
, without ids, classes or inner linksThe text was updated successfully, but these errors were encountered: