wallet-core/node_modules/highlight.js/lib/languages/shell.js

14 lines
264 B
JavaScript
Raw Normal View History

2017-05-24 15:10:37 +02:00
module.exports = function(hljs) {
return {
aliases: ['console'],
contains: [
{
className: 'meta',
begin: '^\\s{0,3}[\\w\\d\\[\\]()@-]*[>%$#]',
starts: {
end: '$', subLanguage: 'bash'
}
},
]
}
};