grunt-showdown

1.0.2 • Public • Published

grunt-showdown

Showdown grunt plugin

Grunt plugin to convert Markdown documents into HTML using the showdown library.

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-showdown --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-showdown');

The "showdown" task

Overview

In your project's Gruntfile, add a section named showdown to the data object passed into grunt.initConfig().

grunt.initConfig({
  showdown: {
    options: {
      // Task-specific options go here.
    },
    your_target: {
      // Target-specific file lists and/or options go here.
    },
  },
});

Options

options.extensions

Type: Array[String] Default value: []

List of built-in showdown extensions in String format.

This list is directly passed to the showdown library.

options.customExtensions

Type: Array[String] Default value: []

List of custom showdown extensions which will be loaded as node modules and passed to the showdown converter.

Usage Examples

Default Options

In this example, the default options are used to convert markdown document with no extra showdown extension.

grunt.initConfig({
  showdown: {
    options: {
        extensions: ['github','table'],
        customExtensions: ['showdown-furigana-extension']
    },
    files: [
        {
            cwd: 'src/md',
            src: ['**/*.md'],
            dest: 'dist/'
        }
    ],
  },
});

Custom Options

In this example, custom options are used to do convert markdown documents with built-in github and table extensions, plus a custom extension showdown-furigana-extension.

grunt.initConfig({
  showdown: {
    options: {
        extensions: ['github','table'],
        customExtensions: ['showdown-furigana-extension']
    },
    files: [
        {
            cwd: 'src/md',
            src: ['**/*.md'],
            dest: 'dist/'
        }
    ],
  },
});

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

  • 1.0.1 - Support cwd file option + unit tests
  • 1.0.0 - Init project. Custom showdown extension support

Dependencies (0)

    Dev Dependencies (7)

    Package Sidebar

    Install

    npm i grunt-showdown

    Weekly Downloads

    7

    Version

    1.0.2

    License

    none

    Last publish

    Collaborators

    • vincent314