1.0.8 • Published 1 year ago

gridsome-plugin-remark-markdown-snippets v1.0.8

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

gridsome-remark-markdown-snippets

Gridsome markdown remark transformer plugin to inject external markdown files into another file, allowing use with variables as well.

Please note that this package is WIP and will be optimized & cleaned-up soon.

Install

Note: This plugin depends on @gridsome/transformer-remark plugin.

npm install gridsome-remark-markdown-snippets
yarn add gridsome-remark-markdown-snippets

Configuration

gridsome.config.js

module.exports = {
  transformers: {
    remark: {
      plugins: ['gridsome-remark-revealjs'],
    }
  }
}

Usage

…?…

The resulting generated markdown will be:

<h1>Example javascript embed</h1>
<pre>
  <code class="language-jsx">
    function someFunc() {
      console.log('testo')
    }
  </code>
</pre>

Options

…?…