massi-world

this website of mine
Log | Files | Refs

marked-custom.js (179B)


      1 #!/usr/bin/node
      2 
      3 import { marked } from "marked";
      4 import { gfmHeadingId } from "marked-gfm-heading-id";
      5 
      6 marked.use(gfmHeadingId({addAnchor: true}));
      7 
      8 import 'marked/bin/marked';