mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-05-08 15:47:48 +08:00
23 lines
369 B
JavaScript
23 lines
369 B
JavaScript
![]() |
/*
|
||
|
Language: Clojure REPL
|
||
|
Description: Clojure REPL sessions
|
||
|
Author: Ivan Sagalaev <maniac@softwaremaniacs.org>
|
||
|
Requires: clojure.js
|
||
|
Category: lisp
|
||
|
*/
|
||
|
|
||
|
function(hljs) {
|
||
|
return {
|
||
|
contains: [
|
||
|
{
|
||
|
className: 'meta',
|
||
|
begin: /^([\w.-]+|\s*#_)=>/,
|
||
|
starts: {
|
||
|
end: /$/,
|
||
|
subLanguage: 'clojure'
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|