table.js 231 B

12345678910111213
  1. export default class TableConfigurer {
  2. constructor(crowi) {
  3. this.crowi = crowi;
  4. }
  5. configure(md) {
  6. md.renderer.rules.table_open = (tokens, idx) => {
  7. return '<table class="table table-bordered">';
  8. };
  9. }
  10. }