grunt-kramdown-rfc2629

0.0.2 • Public • Published

grunt-kramdown-rfc2629

Edit RFCs in kramdown, then generate XML, nrff, text, and HTML.

Getting Started

This plugin requires Grunt ~0.4.4

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-kramdown-rfc2629 --save-dev

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

grunt.loadNpmTasks('grunt-kramdown-rfc2629');

The "kramdown_rfc2629" task

Overview

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

grunt.initConfig({
  kramdown_rfc2629: {
    options: {
      outputs: ['text', 'html'],
      outputDir: 'output',
      removeXML: false
    },
    your_target: {
      src: ['draft-lastname-topic.md']
    },
  },
});

Options

options.outputs

Type: Array or String Default value: ['text', 'html']

Which output format(s) to create. Must include at least one. Valid values include 'text', 'html', 'nroff', and 'raw' (unpaginated text).

options.outputDir

Type: String Default value: 'output'

Directory in which to put the generated .xml and outputs of xml2rfc.

options.removeXML

Type: Boolean Default value: false

Remove the .xml file when the outputs have been generated.

Release History

v0.0.1: Initial release

Dependencies (1)

Dev Dependencies (5)

Package Sidebar

Install

npm i grunt-kramdown-rfc2629

Weekly Downloads

1

Version

0.0.2

License

none

Last publish

Collaborators

  • hildjj