o-syntax-highlight
A syntax highlighter for Origami-supported documentation that wraps PrismJs.
Usage
This component provides accessible syntax highlighting for Javascript, JSON, HTML, CSS, Sass and SCSS.
If there are any languages you would like to highlight that we don't currently support, please open an issue and we will provide it.
o-syntax-highlight uses the following colours, on a grey-5
background (#f2f2f2
). It is compliant with the contrast for WCAG AA. In order to meet the criteria for AAA at 14px+, the colours would be far too dark to distinguish syntax highlighting effectively.
Color | Hex | Ratio | 14px+ | 18px+ or 14px bold |
---|
black-crimson-25 | #a50f2d | 6.93 | AA | AAA |
black-jade-30 | #006b36 | 5.94 | AA | AAA |
black-lemon-55 | #736a0c | 4.94 | AA | AAA |
crimson-jade-80 | #a31f0f | 6.79 | AA | AAA |
grey-60 | #666666 | 5.12 | AA | AAA |
grey-70 | #4d4d4d | 7.55 | AAA | AAA |
oxford | #0f5499 | 6.82 | AA | AAA |
oxford-jade-60 | #097a7f | 4.57 | AA | AAA |
oxford-lemon-80 | #3f7280 | 4.77 | AA | AAA |
oxford-crimson-50 | #6e2a4d | 8.92 | AAA | AAA |
Markup
o-syntax-highlight works with a single class. As long as this class is present in a wrapper that holds the code you wish to highlight, it will tokenise and colorise the syntax according to your preference. The semantically correct way of declaring a code block is to place a <code>
inside a <pre>
. That is what o-syntax-highlight looks for when it is tokenising the code block.
<pre>
is whitespace sensitive, so it is important to follow the markup to get the correct spacing for your syntax.
Every language has its own set of styles — in order to highlight html for example, you would need:
<div class="demo" data-o-component='o-syntax-highlight'>
<pre>
<code class="o-syntax-highlight--json">
"object": {
"string": "string",
"array": [
"name",
"names"
],
"object" : {
"nested": "html"
}
"numbers": 1
}</code>
</pre>
</div>
The same is true for all other available languages:
- Javascript:
o-syntax-highlight--js
or o-syntax-highlight--javascript
- HTML:
o-syntax-highlight--html
- CSS:
o-syntax-highlight--css
- SCSS/SASS:
o-syntax-highlight--scss
or o-syntax-highlight--sass
- JSON:
o-syntax-highlight--json
- DIFF:
o-syntax-highlight--diff
It is worth pointing out that the wrapper can hold any html elements. So long as all of the code blocks within the wrapper are written as described above, o-syntax-highlight will ignore everything else.
<div class="demo" data-o-component='o-syntax-highlight'>
<div class="example">
<p></p>
<p></p>
</div>
<pre>
<code class="o-syntax-highlight--json">
</code>
</pre>
<button type="button" name="button">Button</button>
</div>
However, when highlighting HTML
, there is a caveat.
Because of the way in which the <code>
tag works, if you want to highlight markup which has already been declared, you will have to replace and <
with <
in order for the markup to be read as a string instead of actual HTML.
For example:
<pre>
<code class="o-syntax-highlight--html">
<html>
<head>
<!-- links and scripts -->
</head>
<body>
<div class="some-class"</div>
</body>
</html></code>
</pre>
JavaScript
No code will run automatically unless you are using the Build Service.
You must either construct an o-syntax-highlight
object or fire the o.DOMContentLoaded
event, which oComponent listens for.
Construction
In order to use o-syntax-highlight
with already declared markup, you can use:
const oSyntaxHighlight = require('o-syntax-highlight');
oSyntaxHighlight.init();
If you are initialising the component imperatively, you will need to supply a string of code that you want to highlight, and an options object that defines the language of that code. To tokenise the string you will need be explicit about the element that will hold the highlighted syntax:
const oSyntaxHighlight = require('o-syntax-highlight');
const highlighter = new oSyntaxHighlight('code to highlight', { language: 'html'});
myElement.innerHTML = highlighter.tokenise();
Sass
As with all Origami components, o-syntax-highlight has a silent mode. To use its compiled CSS (rather than using its mixins with your own Sass) set $o-syntax-highlight-is-silent: false;
in your Sass before you import the o-syntax-highlight Sass.
You can't choose your own classnames, but you can choose to load specific language styles as follows:
@include oSyntaxHighlightBase();
@include oSyntaxHighlightJSON();
The same is applicable for the other languages:
- Javascript:
oSyntaxHighlightJS()
- HTML:
oSyntaxHighlightHTML()
- CSS:
oSyntaxHighlightCSS()
- SCSS/SASS:
oSyntaxHighlightSCSS()
- JSON:
oSyntaxHighlightJSON()
- DIFF:
oSyntaxHighlightDIFF()
Contact
If you have any questions or comments about this component, or need help using it, please either raise an issue, visit #ft-origami or email Origami Support.
Licence
This software is published by the Financial Times under the MIT licence.