.. | ||
classes/JohannSchopplich | ||
extensions | ||
snippets/blocks | ||
composer.json | ||
index.php | ||
LICENSE | ||
phpunit.xml | ||
README.md |
Kirby Highlighter
Server-side code highlighting available as custom block and for KirbyText.
Built upon highlight.php which itself is a port of highlight.js.
Key Features
- 🏗 Works with Kirby's
code
block - 🏳️🌈 Supports 189 languages
- 💫 94 styles available
- ⛳️ Automatic language detection for KirbyText
Requirements
- Kirby 3.8+
Installation
Composer
composer require johannschopplich/kirby-highlighter
Download
Download and copy this repository to /site/plugins/kirby-highlighter
.
Usage
With Kirby Blocks Field
This plugin overwrites Kirby's internal code
block. Thus, you won't have to change a thing.
Use the code
block just like before, the output will be highlighted automatically:
fields:
example:
label: Paste code here
type: blocks
fieldsets:
- code
Within KirbyText
Create a code block in your KirbyText field and optionally set the code language:
```css
.currentColor {
color: currentColor;
}
```
Or use the new code
-KirbyTag from this plugin with a base64 encoded code string:
(code: LmN1cnJlbnRDb2xvciB7CiAgY29sb3I6IGN1cnJlbnRDb2xvcjsKfQ== lang: css)
Which outputs:
<pre class="hljs"><code><span class="hljs-selector-class">.currentColor</span> {
<span class="hljs-attribute">color</span>: currentColor;
}</code></pre>
The syntax highlighting functionality can be changed. You can choose between two highlighting modes:
- Explicit mode (default)
- Automatic language detection mode (opt-in)
Explicit Mode
In explicit mode, you have to define which language the code block is. Otherwise highlighting will be skipped.
Automatic Language Detection
Alternatively you can use the automatic detection mode, which highlights your code with the language the library thinks is best. It is highly recommended you explicitly choose the language or limit the number of languages to automatically detect from. This reduces the number of inaccuracies and skips this extremely inefficient selection process.
To enable automatic language detection, set:
johannschopplich.highlighter.autodetect
totrue
johannschopplich.highlighter.languages
to an array of names from which languages should be chosen
Options
Option | Default | Description |
---|---|---|
johannschopplich.highlighter.class |
hljs |
Style class for Highlight to be added to the pre element. |
johannschopplich.highlighter.autodetect |
false |
Indicates if the library should define which language thinks is best. Only applies when no language was set on the KirbyText code block. |
johannschopplich.highlighter.languages |
[] |
Array of language names to be auto-detected. If empty, every language will be auto-detectable. |
johannschopplich.highlighter.line-numbering |
false |
Indicates if the library should split up the highlighted code on each new line and wrap it in a <span> element. |
johannschopplich.highlighter.line-numbering-class |
hljs-code-line |
CSS class applied to highlighted code lines, respectively <span> elements. |
Styling in the Frontend
Since this plugin handles highlighting code only and thus just wraps span's around code, you have to link styles in your frontend yourself. I recommend choosing one of the available themes directly from the highlight.js project: highlight.js/src/styles/
The CSS files over at the repository are maintained and new ones arrive from time to time, therefore it would be redundant to include a copy in this repository.
One of my favorite themes is Night Owl by Sarah Drasner.
For example you could download the CSS file and save it in your Kirby project under assets/css/hljs-night-owl.css
. Now you just have to include it in your template <?= css('assets/css/hljs-night-owl.css') ?>
. Alternatively, use a CSS bundler of your choice.
Line Numbering
If you choose to activate the line numbering option, you will need to include additional CSS style to display line numbering.
A basic example using pseudo-elements:
pre.hljs .hljs-code-line {
counter-increment: line;
}
pre.hljs .hljs-code-line::before {
content: counter(line);
display: inline-block;
margin-right: 1em;
opacity: 0.5;
}
Credits
- Geert Bergman and contributors for the awesome highlight.php port.
- Martin Folkers for his Kirby Highlight plugin which built the base of this package.
License
MIT License © 2020-PRESENT Johann Schopplich