Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
271 Bytes
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;