Initial commit.
Signed-off-by: Andreas Widen <aw@luflow.net>
This commit is contained in:
commit
a4a5c7daa5
1389 changed files with 241399 additions and 0 deletions
35
static/highlight/es/languages/clojure-repl.js
Normal file
35
static/highlight/es/languages/clojure-repl.js
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
/*! `clojure-repl` grammar compiled for Highlight.js 11.11.1 */
|
||||
var hljsGrammar = (function () {
|
||||
'use strict';
|
||||
|
||||
/*
|
||||
Language: Clojure REPL
|
||||
Description: Clojure REPL sessions
|
||||
Author: Ivan Sagalaev <maniac@softwaremaniacs.org>
|
||||
Requires: clojure.js
|
||||
Website: https://clojure.org
|
||||
Category: lisp
|
||||
*/
|
||||
|
||||
/** @type LanguageFn */
|
||||
function clojureRepl(hljs) {
|
||||
return {
|
||||
name: 'Clojure REPL',
|
||||
contains: [
|
||||
{
|
||||
className: 'meta.prompt',
|
||||
begin: /^([\w.-]+|\s*#_)?=>/,
|
||||
starts: {
|
||||
end: /$/,
|
||||
subLanguage: 'clojure'
|
||||
}
|
||||
}
|
||||
]
|
||||
};
|
||||
}
|
||||
|
||||
return clojureRepl;
|
||||
|
||||
})();
|
||||
;
|
||||
export default hljsGrammar;
|
||||
Loading…
Reference in a new issue