This grunt task takes a set of markdown files and converts them to HTML. It supports GFM with code highlighting. The code highlighting is done using highlight.js.
Install this grunt plugin next to your project's grunt.js gruntfile with:
npm install grunt-markdown --save-dev
Then add this line to your gruntfile:
grunt.loadNpmTasks('grunt-markdown');
Creating a markdown task is simple. For the basic functionality add the following config in your gruntfile:
grunt.initConfig({
markdown: {
all: {
files: [
{
expand: true,
src: 'docs/src/*.md',
dest: 'docs/html/',
ext: '.html'
}
]
}
}
});
Here is an example config using all of the options:
grunt.initConfig({
markdown: {
all: {
files: [
{
expand: true,
src: 'docs/src/*.md',
dest: 'docs/html/',
ext: '.html'
}
],
options: {
template: 'myTemplate.jst',
markdownOptions: {
gfm: true,
highlight: manual,
codeLines: {
before: '<span>',
after: '</span>'
}
}
}
}
}
});
These are the properties that the markdown
task accepts:
files
: This plugin supports use of the files API introduced in Grunt 0.4.0. Files may be specified using any one of the Compact Format, Files Objects Format, or Files Array Format (as in the above example).options
: options to be passed to the markdown parsertemplate
: If you wish to specify your own html template, use thetemplate
option. Include the following line:<%=content%>
where you want the compiled markdown inserted in your templatemarkdownOptions
: Options passed directly to the markdown parser.
Most markdown options are passed as-is to the marked markdown parser. The only option that is processed prior to compiling the markdown is the highlight
option. If you specify auto
or manual
the task will handle highlighting code blocks for you use highlight.js. If you pass a custom function as the highlight option it will be used to highlight the code.
auto
: Will try to detect the languagemanual
: will pass the language name from markdown to the highlight functioncodeLines
: specify text that should wrap code lines
Copyright (c) 2012 James Morrin Licensed under the MIT license.