mirror of
				https://github.com/JKorf/CryptoExchange.Net
				synced 2025-11-04 12:28:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			406 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			406 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/*
 | 
						|
Language: Shell Session
 | 
						|
Requires: bash.js
 | 
						|
Author: TSUYUSATO Kitsune <make.just.on@gmail.com>
 | 
						|
Category: common
 | 
						|
*/
 | 
						|
 | 
						|
export default function(hljs) {
 | 
						|
  return {
 | 
						|
    name: 'Shell Session',
 | 
						|
    aliases: ['console'],
 | 
						|
    contains: [
 | 
						|
      {
 | 
						|
        className: 'meta',
 | 
						|
        begin: '^\\s{0,3}[/\\w\\d\\[\\]()@-]*[>%$#]',
 | 
						|
        starts: {
 | 
						|
          end: '$', subLanguage: 'bash'
 | 
						|
        }
 | 
						|
      }
 | 
						|
    ]
 | 
						|
  }
 | 
						|
}
 |