We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent beb56e0 commit 4c82b31Copy full SHA for 4c82b31
scripts/md2html/md2html.js
@@ -48,6 +48,22 @@ hljs.registerLanguage('uri', function() {
48
],
49
}
50
});
51
+hljs.registerLanguage('eventstream', function() {
52
+ return {
53
+ contains: [
54
+ {
55
+ scope: "attr",
56
+ begin: /^/,
57
+ end: ":",
58
+ },
59
60
+ scope: "literal",
61
+ begin: /: */,
62
+ end: /$/,
63
64
+ ],
65
+ }
66
+ });
67
const cheerio = require('cheerio');
68
69
let argv = require('yargs')
0 commit comments