1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/highlight.js/lib/languages/shell.js

31 lines
743 B
JavaScript
Raw Normal View History

2024-01-16 21:26:16 +08:00
/*
Language: Shell Session
Requires: bash.js
Author: TSUYUSATO Kitsune <make.just.on@gmail.com>
Category: common
Audit: 2020
*/
/** @type LanguageFn */
function shell(hljs) {
2023-12-18 13:12:25 +08:00
return {
2024-01-16 21:26:16 +08:00
name: 'Shell Session',
aliases: [ 'console' ],
2023-12-18 13:12:25 +08:00
contains: [
{
className: 'meta',
2024-01-16 21:26:16 +08:00
// We cannot add \s (spaces) in the regular expression otherwise it will be too broad and produce unexpected result.
// For instance, in the following example, it would match "echo /path/to/home >" as a prompt:
// echo /path/to/home > t.exe
begin: /^\s{0,3}[/~\w\d[\]()@-]*[>%$#]/,
2023-12-18 13:12:25 +08:00
starts: {
2024-01-16 21:26:16 +08:00
end: /[^\\](?=\s*$)/,
subLanguage: 'bash'
2023-12-18 13:12:25 +08:00
}
}
]
2024-01-16 21:26:16 +08:00
};
}
module.exports = shell;