UNPKG

@emdaer/core

Version:
12 lines (10 loc) 243 B
/* */ /** * Applies transforms to generated content */ module.exports = function fixCodeFences(content) { return content.replace( /(<!--emdaer-code-fence-start)([\s\S]*?)(emdaer-code-fence-end-->)/g, (...args) => args[2] ); };