Highlights content inside the code
tags with the language specified in the class attribute. If no language is provided in the class, highlightjs-loader will attempt to auto detect.
in your snippet.html
<code class="html">
<div>Example code</div>
</code>
<code class="js">
<div>Example code</div>
</code>
in your app:
var htmlSnippet = require('html!highlight./snippet.html');
As of v0.2.0 you can specify parameter on the loader and can drop the <code>
tag in your html, i.e.
var htmlSnippet = require('!highlightjs?lang=html./snippet.html');
<div
id="someId"
class="someClass">
text
</div>
highlightjs-loader is available under MIT. See LICENSE for more details.