clj.js 246 B

123456789
  1. /**
  2. * Clojure
  3. */
  4. module.exports = {
  5. // find document blocks between ';;;;' and ';;;;'
  6. docBlocksRegExp: /\;{4}\uffff?(.+?)\uffff?(?:\s*)?;{4}/g,
  7. // remove not needed ' ;; ' at the beginning
  8. inlineRegExp: /^(\s*)?(;{2})[ ]?/gm
  9. };