If you’ve ever worked on a large-scale documentation site, you know the silent killer of consistency: human error in Markdown files.

In webpack-doc-kit (the coming documentation engine for Webpack), every Markdown page has a YAML frontmatter title and a Markdown H1 heading (# Title). Ideally, they should always match 😅:

title: "TypeScript"

# TypeScript

Enter fullscreen mode