CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
python-repl.js33 linesDownload Raw Back to languages
1/*2Language: Python REPL3Requires: python.js4Author: Josh Goebel <hello@joshgoebel.com>5Category: common6*/7 8function pythonRepl(hljs) {9  return {10    aliases: [ 'pycon' ],11    contains: [12      {13        className: 'meta.prompt',14        starts: {15          // a space separates the REPL prefix from the actual code16          // this is purely for cleaner HTML output17          end: / |$/,18          starts: {19            end: '$',20            subLanguage: 'python'21          }22        },23        variants: [24          { begin: /^>>>(?=[ ]|$)/ },25          { begin: /^\.\.\.(?=[ ]|$)/ }26        ]27      }28    ]29  };30}31 32export { pythonRepl as default };33 
basant307/AI_Governance_Project · CoolFace