shell.js 502 B

1234567891011121314151617181920212223
  1. /*
  2. Language: Shell Session
  3. Requires: bash.js
  4. Author: TSUYUSATO Kitsune <make.just.on@gmail.com>
  5. Category: common
  6. */
  7. export default function (hljs) {
  8. return {
  9. name: 'Shell Session',
  10. aliases: ['console'],
  11. contains: [
  12. {
  13. className: 'meta',
  14. begin: '^\\s{0,3}[/\\w\\d\\[\\]()@-]*[>%$#]',
  15. starts: {
  16. end: '$',
  17. subLanguage: 'bash'
  18. }
  19. }
  20. ]
  21. };
  22. }