2018-09-22 19:58:33 +00:00
|
|
|
import * as plugins from './smartmarkdown.plugins';
|
|
|
|
|
2019-06-17 09:56:39 +00:00
|
|
|
export class SmartMarkdown {
|
|
|
|
constructor() {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* converts markdown to html
|
|
|
|
* @param mdString
|
|
|
|
*/
|
2021-10-04 11:35:20 +00:00
|
|
|
public async markdownToHtml(mdString: string): Promise<string> {
|
|
|
|
const result = await plugins.remark().use(plugins.remarkHtml).process(mdString);
|
|
|
|
return result.toString();
|
2019-06-17 09:56:39 +00:00
|
|
|
}
|
|
|
|
|
2021-10-04 11:35:20 +00:00
|
|
|
public htmlToMarkdown(htmlString: string): string {
|
2019-06-17 09:56:39 +00:00
|
|
|
const turndownInstance = new plugins.turndown({
|
|
|
|
headingStyle: 'atx',
|
2021-04-12 09:20:28 +00:00
|
|
|
codeBlockStyle: 'fenced',
|
2019-06-17 09:56:39 +00:00
|
|
|
});
|
2019-06-17 12:41:57 +00:00
|
|
|
turndownInstance.use(plugins.turndownPluginGfm.gfm);
|
2019-06-17 09:56:39 +00:00
|
|
|
return turndownInstance.turndown(htmlString);
|
|
|
|
}
|
|
|
|
}
|