Skip to content

piyushsi/jekyll-md-highlight-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

jekyll-md-highlight-parser

A Jekyll Markdown Highlight && Image parser.

Installation

$ npm install jekyll-md-highlight-parser

Usage

let mdJekyll = `{% highlight ruby %}
puts "I love ice cream"
{% endhighlight %}`;

// Parse Highlight using ReactMarkdown && CodeBlock
import { hParse } from "jekyll-md-highlight-parser";

<ReactMarkdown
  escapeHtml={true}
  source={mdParse(mdJekyll)}
  renderers={{ code: CodeBlock }}
></ReactMarkdown>;

// Parse Highlight with image using ReactMarkdown
import { hParse, iParse } from "jekyll-md-highlight-parser";
<ReactMarkdown
  escapeHtml={true}
  source={iParse(hParse(mdJekyll))}
  renderers={{ code: CodeBlock }}
></ReactMarkdown>;

Badges

npm version

License

MIT

Releases

No releases published

Packages

No packages published