marp-team / marp-core

The core of Marp converter
MIT License
777 stars 130 forks source link

Slugify Markdown headers #299

Closed yhatt closed 1 year ago

yhatt commented 2 years ago

Providing built-in slugified headers in Marp Core will improve anchor navigation in Marp for VS Code.

# ABC
## DEF
## GHI JKL
### DEF
<h1 id="abc">ABC</h1>
<h2 id="def">DEF</h2>
<h2 id="ghi-jkl">GHI JKL</h2>
<h3 id="def-2">DEF</h3>

Requirements

Note

Marp CLI has not provided custom anchor link support in bespoke template. This implementation may motivate to support custom anchor links in bespoke template.

Related