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