Paragraph 1
Paragraph 2
| 1 | 2 |
| 3 | 4 |
| 1 | 2 | 3 |
| 4 | ||
| 5 | 6 | 7 |
const Prism = require('prismjs');
// The code snippet you want to highlight, as a string
const code = `var data = 1;`;
// Returns a highlighted HTML string
const html = Prism.highlight(code, Prism.languages.javascript, 'javascript');