]>
luflow.net public git repositories - flow-web.git/blob - static/highlight/languages/python-repl.js
1 /*! `python-repl` grammar compiled for Highlight.js 11.11.1 */
3 var hljsGrammar
= (function () {
9 Author: Josh Goebel <hello@joshgoebel.com>
13 function pythonRepl(hljs
) {
18 className: 'meta.prompt',
20 // a space separates the REPL prefix from the actual code
21 // this is purely for cleaner HTML output
29 { begin: /^>>>(?=[ ]|$)/ },
30 { begin: /^\.\.\.(?=[ ]|$)/ }
41 hljs
.registerLanguage('python-repl', hljsGrammar
);