Files
red_de_investigacion_front/node_modules/highlight.js/lib/languages/shell.js
T

14 lines
264 B
JavaScript
Raw Normal View History

2020-01-14 20:43:08 -06:00
module.exports = function(hljs) {
return {
aliases: ['console'],
contains: [
{
className: 'meta',
begin: '^\\s{0,3}[/\\w\\d\\[\\]()@-]*[>%$#]',
starts: {
end: '$', subLanguage: 'bash'
}
}
]
}
};