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