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'],
],
]
],
...
],
Example of custom cofiguraton of selector
or options
properties
'components' => [
...
'assetManager' => [
'bundles' => [
'nezhelskoy\highlight\HighlightAsset' => [
'selector' => '.is-highlighted',
'options' => [
'classPrefix' => 'custom-',
'useBR' => true,
],
'css' => ['dist/styles/zenburn.css'],
],
]
],
...
],
Using of custom build, located in /js/highlight
, for example
'components' => [
...
'assetManager' => [
'bundles' => [
'nezhelskoy\highlight\HighlightAsset' => [
'sourcePath' => null,
'css' => ['/js/highlight/styles/zenburn.css'],
'js' => ['/js/highlight/highlight.pack.js'],
],
]
],
...
],
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/.