Skip to content

Instantly share code, notes, and snippets.

@gre
Created November 22, 2016 08:55
Show Gist options
  • Save gre/7f5b9a94e6b11ccd58462ff1d4a492d9 to your computer and use it in GitHub Desktop.
Save gre/7f5b9a94e6b11ccd58462ff1d4a492d9 to your computer and use it in GitHub Desktop.
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