export default class HeaderWithEditLinkConfigurer { constructor(crowi) { this.crowi = crowi; } configure(md) { md.renderer.rules.heading_close = (tokens, idx) => { return ` `; }; } }