mirror of
https://github.com/FlightControl-Master/MOOSE_DOCS.git
synced 2025-08-15 10:37:49 +00:00
22 lines
363 B
JavaScript
22 lines
363 B
JavaScript
/*
|
|
Language: Shell Session
|
|
Requires: bash.js
|
|
Author: TSUYUSATO Kitsune <make.just.on@gmail.com>
|
|
Category: common
|
|
*/
|
|
|
|
function(hljs) {
|
|
return {
|
|
aliases: ['console'],
|
|
contains: [
|
|
{
|
|
className: 'meta',
|
|
begin: '^\\s{0,3}[\\w\\d\\[\\]()@-]*[>%$#]',
|
|
starts: {
|
|
end: '$', subLanguage: 'bash'
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|