The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist nezhelskoy/yii2-highlight "*"
Or add
"nezhelskoy/yii2-highlight": "*"
to the require section of your composer.json
file.
In your view script register asset:
nezhelskoy\highlight\HighlightAsset::register($this);
And manage content, as described in original highlight.js documentation:
<pre><code class="html">...</code></pre>
You can override style in your config file, e.g. config/web.php
:
'components' => [
...
'assetManager' => [
'bundles' => [
'nezhelskoy\highlight\HighlightAsset' => [
'css' => ['dist/styles/zenburn.css'],
],
]
],
...
],
NOTICE If you overriding asset configuration inside your config file, than you should call for asset register method inside your view like so:
\Yii::$app->getAssetManager()->getBundle('nezhelskoy\highlight\HighlightAsset')->register($this);
yii2-highlight is released under the BSD License. See LICENSE.md file for details.
The official site for the Highlight.js library is at https://highlightjs.org/.