123456789101112131415161718192021222324252627282930313233343536 |
- function pythonRepl(hljs) {
- return {
- aliases: [ 'pycon' ],
- contains: [
- {
- className: 'meta',
- starts: {
-
-
- end: / |$/,
- starts: {
- end: '$',
- subLanguage: 'python'
- }
- },
- variants: [
- {
- begin: /^>>>(?=[ ]|$)/
- },
- {
- begin: /^\.\.\.(?=[ ]|$)/
- }
- ]
- }
- ]
- };
- }
- module.exports = pythonRepl;
|