mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
505 B
21 lines
505 B
Prism.languages['shell-session'] = {
|
|
'command': {
|
|
pattern: /\$(?:[^\r\n'"<]|(["'])(?:\\[\s\S]|\$\([^)]+\)|`[^`]+`|(?!\1)[^\\])*\1|((?:^|[^<])<<\s*)["']?(\w+?)["']?\s*(?:\r\n?|\n)(?:[\s\S])*?(?:\r\n?|\n)\3)+/,
|
|
inside: {
|
|
'bash': {
|
|
pattern: /(\$\s*)[\s\S]+/,
|
|
lookbehind: true,
|
|
alias: 'language-bash',
|
|
inside: Prism.languages.bash
|
|
},
|
|
'sh': {
|
|
pattern: /^\$/,
|
|
alias: 'important'
|
|
}
|
|
}
|
|
},
|
|
'output': {
|
|
pattern: /.(?:.*(?:\r\n?|\n|.$))*/
|
|
// output highlighting?
|
|
}
|
|
}
|
|
|