UNPKG

apidoc-core

Version:

Core parser library to generate apidoc result following the apidoc-spec

10 lines (9 loc) 246 B
/** * Clojure */ module.exports = { // find document blocks between ';;;;' and ';;;;' docBlocksRegExp: /\;{4}\uffff?(.+?)\uffff?(?:\s*)?;{4}/g, // remove not needed ' ;; ' at the beginning inlineRegExp: /^(\s*)?(;{2})[ ]?/gm };