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