Jan Dierckx

Results 1 comments of Jan Dierckx

Use the low level `highlight` function [from the Prism API](https://prismjs.com/docs/Prism.html#.highlight) to convert your code to highlighted code: ``` const highlightedCode = Prism.highlight( code, Prism.languages.javascript, "javascript" ); ``` Then display the...