Make commands available to emacs,
M-x JSONto validate a JSON bufferM-x GFMto generate HTML from a Markdown bufferM-x PDFto generate PDF from a Markdown bufferM-x VDOMto generate VDOM from an HTML bufferM-x FURIto generate furigana from a selection of kanji
When HTML is generated from a markdown file, a check is made for the existence of css and js files on the same path as the markdown file. If a css or js file is found a reference to it is included in the output HTML.
Converting the markdown file in this directory,
.
├── file.css
├── file.js
└── file.mdResults in an HTML with the following:
/path/to/my/file.html
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- only added if ./file.css exists -->
<link rel="stylesheet" type="text/css" href="./file.css">
<!-- only added if ./file.js exists -->
<script src="./file.js" type="module"></script>
</head>
<body>:body</body>
<!-- only added if ./file.js exists -->
<script type="text/javascript">
typeof file === 'object'
&& file && typeof file.start === 'function'
&& file.start()
</script>
</html>$ git clone https://github.com/iambumblehead/emacs-javascript-bundle.git
$ cd emacs-javascript-bundle && npm installnpm install modifes $HOME/.config/init/emacs.el adding,
(load-file "~/path/to/emacs-javascript-bundle/conf.el")For rendering PDF files, python and qtwebengine are needed.