highlight-ts
Version:
Highlight.JS in TypeScript (and ES6).
23 lines (20 loc) • 454 B
text/typescript
/*
Language: Shell Session
Requires: bash.js
Author: TSUYUSATO Kitsune <make.just.on@gmail.com>
Category: common
*/
import { LanguageDef } from '../types';
export const Shell: LanguageDef = {
name: 'shell',
aliases: ['console'],
contains: [
{
className: 'meta',
begin: '^\\s{0,3}[\\w\\d\\[\\]()@-]*[>%$#]',
starts: {
end: '$', subLanguage: 'bash'
}
}
]
};