wallet-core/node_modules/highlight.js/lib/languages/clojure-repl.js

14 lines
234 B
JavaScript
Raw Normal View History

2017-05-24 15:10:37 +02:00
module.exports = function(hljs) {
return {
contains: [
{
className: 'meta',
begin: /^([\w.-]+|\s*#_)=>/,
starts: {
end: /$/,
subLanguage: 'clojure'
}
}
]
}
};