camacho / markdown-magic-template

Add Lodash template support to Markdown

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Template plugin

Add Lodash template support to markdown files via markdown-magic

Install

npm i markdown-magic markdown-magic-template --save-dev

Adding the plugin

See example.js for usage.

const path = require('path');
const markdownMagic = require('markdown-magic');

const config = {
  transforms: {
    TEMPLATE: require('./index.js')({ name: 'world' }),
  }
}

const markdownPath = path.join(__dirname, 'README.md');
markdownMagic(markdownPath, config);

Usage in markdown

hello world!

Options

  • src (required) - path to template, relative to the Markdown file

About

Add Lodash template support to Markdown


Languages

Language:JavaScript 100.0%