gitextract_qbfk4w8g/ ├── .github/ │ └── workflows/ │ └── npmpublish.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENCE.txt ├── README.md ├── changelog.md ├── package.json ├── src/ │ ├── builtin_plugins/ │ │ ├── chartjs/ │ │ │ ├── index.js │ │ │ └── template.pug │ │ ├── flowchart/ │ │ │ ├── index.js │ │ │ └── template.pug │ │ ├── index.js │ │ ├── katex/ │ │ │ ├── head.html │ │ │ └── index.js │ │ ├── markdown/ │ │ │ └── index.js │ │ ├── mathjax/ │ │ │ └── index.js │ │ ├── mermaid/ │ │ │ ├── index.js │ │ │ └── template.pug │ │ ├── scss/ │ │ │ └── index.js │ │ ├── table/ │ │ │ ├── index.js │ │ │ └── template.pug │ │ └── vegalite/ │ │ ├── index.js │ │ └── template.pug │ ├── cli-tools/ │ │ ├── pdf2gif.js │ │ └── pretty-pdf-thumbnail.js │ ├── index.js │ ├── masterToPDF.js │ ├── parseLocals.js │ └── plugins.js └── test/ ├── samples/ │ ├── interactive_example/ │ │ ├── diagrams/ │ │ │ ├── diagram.mermaid │ │ │ └── plot.vegalite.json │ │ ├── master.pug │ │ └── report.scss │ ├── pug/ │ │ ├── absolute_path/ │ │ │ └── master.pug │ │ ├── basic_example/ │ │ │ └── master.pug │ │ ├── data_locals/ │ │ │ └── master.pug │ │ ├── data_locals_file/ │ │ │ ├── data.json │ │ │ └── master.pug │ │ ├── data_require/ │ │ │ ├── data.json │ │ │ └── master.pug │ │ ├── error/ │ │ │ └── master.pug │ │ ├── header_and_footer/ │ │ │ └── master.pug │ │ ├── katex/ │ │ │ ├── config.yml │ │ │ └── master.pug │ │ ├── letter/ │ │ │ ├── letter.scss │ │ │ └── master.pug │ │ ├── local_plugin/ │ │ │ ├── config.yml │ │ │ ├── master.pug │ │ │ └── say-my-name.plugin.js │ │ ├── mathjax/ │ │ │ ├── config.yml │ │ │ └── master.pug │ │ └── utf8-characters/ │ │ └── master.pug │ └── special_renderings/ │ ├── chartjs/ │ │ └── donut.chart.js │ ├── htable_csv/ │ │ ├── diff.txt │ │ ├── expected.pug │ │ └── sample.md.htable.csv │ └── table_csv/ │ ├── diff.txt │ ├── expected.pug │ └── sample.md.table.csv └── test.js