]>
luflow.net public git repositories - flow-web.git/blob - static/highlight/languages/node-repl.js
1 /*! `node-repl` grammar compiled for Highlight.js 11.11.1 */
3 var hljsGrammar
= (function () {
8 Requires: javascript.js
9 Author: Marat Nagayev <nagaevmt@yandex.ru>
13 /** @type LanguageFn */
14 function nodeRepl(hljs
) {
19 className: 'meta.prompt',
21 // a space separates the REPL prefix from the actual code
22 // this is purely for cleaner HTML output
26 subLanguage: 'javascript'
30 { begin: /^>(?=[ ]|$)/ },
31 { begin: /^\.\.\.(?=[ ]|$)/ }
42 hljs
.registerLanguage('node-repl', hljsGrammar
);