2020-12-02 17:43:44 +02:00
|
|
|
const TurndownService = require('@joplin/turndown');
|
|
|
|
const turndownPluginGfm = require('@joplin/turndown-plugin-gfm').gfm;
|
2021-04-11 19:01:06 +02:00
|
|
|
import markdownUtils from './markdownUtils';
|
2018-05-16 15:16:14 +02:00
|
|
|
|
2021-04-11 19:01:06 +02:00
|
|
|
export interface ParseOptions {
|
|
|
|
anchorNames?: string[];
|
|
|
|
preserveImageTagsWithSize?: boolean;
|
|
|
|
baseUrl?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class HtmlToMd {
|
|
|
|
|
|
|
|
public parse(html: string, options: ParseOptions = {}) {
|
2018-05-22 01:54:23 +02:00
|
|
|
const turndown = new TurndownService({
|
|
|
|
headingStyle: 'atx',
|
2020-05-21 10:14:33 +02:00
|
|
|
anchorNames: options.anchorNames ? options.anchorNames.map(n => n.trim().toLowerCase()) : [],
|
2019-06-22 19:57:41 +02:00
|
|
|
codeBlockStyle: 'fenced',
|
2020-03-10 01:24:57 +02:00
|
|
|
preserveImageTagsWithSize: !!options.preserveImageTagsWithSize,
|
2020-03-23 02:47:25 +02:00
|
|
|
bulletListMarker: '-',
|
|
|
|
emDelimiter: '*',
|
|
|
|
strongDelimiter: '**',
|
2020-12-02 17:43:44 +02:00
|
|
|
br: '',
|
2019-07-29 15:43:53 +02:00
|
|
|
});
|
|
|
|
turndown.use(turndownPluginGfm);
|
2018-05-20 11:19:59 +02:00
|
|
|
turndown.remove('script');
|
2018-05-24 14:32:43 +02:00
|
|
|
turndown.remove('style');
|
2019-07-29 15:43:53 +02:00
|
|
|
let md = turndown.turndown(html);
|
2018-05-23 13:14:38 +02:00
|
|
|
if (options.baseUrl) md = markdownUtils.prependBaseUrl(md, options.baseUrl);
|
|
|
|
return md;
|
2018-05-16 15:16:14 +02:00
|
|
|
}
|
|
|
|
|
2021-04-11 19:01:06 +02:00
|
|
|
}
|