1. 4
    Create a remark Plugin to Modify Markdown Headings
    3m 37s

Create a remark Plugin to Modify Markdown Headings

InstructorJohn Otander

Share this video with your friends

Send Tweet

remark is a pluggable markdown parser and compiler. It's part of the unified so it offers a wide array of libraries to make writing plugins with the markdown AST (MDAST) more developer friendly.

We'll use unist-util-visit to traverse heading nodes in a Markdown file and prefix all h1s with the text "BREAKING" using a TDD workflow.