I'm using Gulp + Gulpsmith + Metalsmith to create my website.
metalsmith_markdown is rendering my HTML as follows:
# This is an H1
to <h1 id="this-is-an-h1">This is an H1</h1>
. Why is it rendering that 'id' tag?
Why might that be?
Here's the part that deals with the markdown rendering in my Gulpfile.js
.use(markdown({
gfm: true,
tables: true,
breaks: false,
pedantic: false,
sanitize: true,
smartLists: true,
smartypants: true
}))