File size: 271 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import * as Showdown from 'showdown';
const converter = () => {
const converter = new Showdown.Converter({
tables: true,
simplifiedAutoLink: true,
strikethrough: true,
tasklists: true,
});
return converter;
};
export default converter;
|