fancy-code
v0.1.5
Published
Some nice animations for your next coding article.
Downloads
2
Readme
inline-code
Some nice animations for your next coding article.
Try it!
Clone the repo, then
npm install
then
npm start
Installation
npm install --save fancy-code
Usage
NOTE: This package is not yet published to npm, sorry!
Simply require fancy-code, and then parse some markdown. fancy-code works by looking at the markdown output, taking any pre blocks, and then parsing the associated "language" as a file name. Then it uses these file names to create diffs and animations for different code blocks. It's a little hard to include here, but check out the example for more details.
const fancyCode = require("fancy-code");
const el = document.getElementById("content");
const page = new fancyCode.FC(el);
page.parse(`
`);