Created
November 22, 2016 08:55
-
-
Save gre/7f5b9a94e6b11ccd58462ff1d4a492d9 to your computer and use it in GitHub Desktop.
showcase bug https://github.com/PrismJS/prism/issues/1043
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.write(`<link rel="stylesheet" href="https://rawgit.com/PrismJS/prism/gh-pages/themes/prism.css" />`); | |
var Prism = require('prismjs'); | |
var code = [ | |
"const c = `", | |
"// do something", | |
"float a = p.x * p.y;", | |
"", | |
"// do something else", | |
"float b = a * 2.0;", | |
"`;" | |
].join("\n"); | |
var html = Prism.highlight(code, Prism.languages.javascript); | |
document.write('<pre>'+html+'</pre>'); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment