Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 317 Bytes

REPLACEMENTS.md

File metadata and controls

14 lines (10 loc) · 317 Bytes

Replacements

If you want to alter the text of your rendered MD files (which is rendered by marked), you can supply a replacements.js file in the root of your particular project directory.

Example:

module.exports = function(text) {
  return text.replace(/\<table\>/g, '<table class="table">');
}