grunt-markdown icon indicating copy to clipboard operation
grunt-markdown copied to clipboard

Markdown gruntjs task with code highlighting

Results 10 grunt-markdown issues
Sort by recently updated
recently updated
newest added

If I wrap something in `` the output will get destroyed... so - lists arent lists anymore - code highlighting does not work etc...

Bumps [lodash](https://github.com/lodash/lodash) from 2.4.2 to 4.17.19. Release notes Sourced from lodash's releases. 4.17.16 4.0.0 lodash v4.0.0 2015 was big year! Lodash became the most depended on npm package, passed 1...

dependencies

The grunt-markdown plugin attempts to auto-highlight fenced blocks of code even if they are marked `no-highlight`, `text`, or `plain`. This should be possible using `highlight.js`, but for some reason doesn't...

``` === npm audit security report === ┌──────────────────────────────────────────────────────────────────────────────┐ │ Manual Review │ │ Some vulnerabilities require your attention to resolve │ │ │ │ Visit https://go.npm.me/audit-guide for additional guidance │...

Hey there! `grunt-markdown` is great, thanks for making it. This is a PR to upgrade the `marked` library. I'm working on using `grunt-markdown` to generate static sites and I'm having...

[grunt-markdown](https://github.com/treasonx/grunt-markdown) transforms ``` [google]: http://google.com "GOOGLE" ``` to ``` GOOGLE ``` while according to [daringfireball](http://daringfireball.net/projects/markdown/dingus) it should not create anything at all in the `html`.

I would like to include the last modified time stamp in the generated output!

I'd like to suggest generating a table of contents with `marked-toc` and making it available as an HTML ul/li tree in the template through ``. Am I making sense? Thanks.

Can preCompile and postCompile be passed a 3rd argument that specifies the current filename? (either source or what it will be when done)

``` { expand: true, src: './*.md', dest: './docs/', ext: '.html', rename: function (dest, src) { return dest.indexOf('README') === 0 ? './docs/index.html' : dest; } } ``` And I get the...