123456789101112131415161718192021222324252627282930 |
- function shell(hljs) {
- return {
- name: 'Shell Session',
- aliases: [ 'console' ],
- contains: [
- {
- className: 'meta',
-
-
-
- begin: /^\s{0,3}[/~\w\d[\]()@-]*[>%$#]/,
- starts: {
- end: /[^\\](?=\s*$)/,
- subLanguage: 'bash'
- }
- }
- ]
- };
- }
- module.exports = shell;
|