2020-12-09 16:58:38 +02:00
|
|
|
import shim from '@joplin/lib/shim';
|
2018-11-08 01:35:14 +02:00
|
|
|
const os = require('os');
|
2023-08-27 20:01:06 +02:00
|
|
|
import { readFile } from 'fs/promises';
|
2020-11-07 17:59:37 +02:00
|
|
|
const { filename } = require('@joplin/lib/path-utils');
|
2021-04-11 19:01:06 +02:00
|
|
|
import HtmlToMd from '@joplin/lib/HtmlToMd';
|
2018-05-12 12:48:39 +02:00
|
|
|
|
2023-02-20 17:02:29 +02:00
|
|
|
describe('HtmlToMd', () => {
|
2018-05-12 12:48:39 +02:00
|
|
|
|
2020-12-01 20:05:24 +02:00
|
|
|
it('should convert from Html to Markdown', (async () => {
|
2019-09-19 23:51:18 +02:00
|
|
|
const basePath = `${__dirname}/html_to_md`;
|
2018-05-12 12:48:39 +02:00
|
|
|
const files = await shim.fsDriver().readDirStats(basePath);
|
2018-05-20 11:19:59 +02:00
|
|
|
const htmlToMd = new HtmlToMd();
|
2019-07-30 09:35:42 +02:00
|
|
|
|
2018-05-12 12:48:39 +02:00
|
|
|
for (let i = 0; i < files.length; i++) {
|
|
|
|
const htmlFilename = files[i].path;
|
|
|
|
if (htmlFilename.indexOf('.html') < 0) continue;
|
|
|
|
|
2019-09-19 23:51:18 +02:00
|
|
|
const htmlPath = `${basePath}/${htmlFilename}`;
|
|
|
|
const mdPath = `${basePath}/${filename(htmlFilename)}.md`;
|
2018-05-12 12:48:39 +02:00
|
|
|
|
2020-12-09 16:58:38 +02:00
|
|
|
// if (htmlFilename !== 'anchor_same_title_and_url.html') continue;
|
2020-03-10 01:24:57 +02:00
|
|
|
|
|
|
|
// if (htmlFilename.indexOf('image_preserve_size') !== 0) continue;
|
2019-06-13 01:26:09 +02:00
|
|
|
|
2020-12-09 16:58:38 +02:00
|
|
|
const htmlToMdOptions: any = {};
|
2019-06-13 01:26:09 +02:00
|
|
|
|
|
|
|
if (htmlFilename === 'anchor_local.html') {
|
|
|
|
// Normally the list of anchor names in the document are retrieved from the HTML code
|
|
|
|
// This is straightforward when the document is still in DOM format, as with the clipper,
|
|
|
|
// but otherwise it would need to be somehow parsed out from the HTML. Here we just
|
|
|
|
// hard code the anchors that we know are in the file.
|
2019-10-12 00:18:40 +02:00
|
|
|
htmlToMdOptions.anchorNames = ['first', 'second', 'fourth'];
|
2019-06-13 01:26:09 +02:00
|
|
|
}
|
2018-05-12 12:48:39 +02:00
|
|
|
|
2020-03-10 01:24:57 +02:00
|
|
|
if (htmlFilename.indexOf('image_preserve_size') === 0) {
|
|
|
|
htmlToMdOptions.preserveImageTagsWithSize = true;
|
|
|
|
}
|
|
|
|
|
2023-08-27 20:01:06 +02:00
|
|
|
const html = await readFile(htmlPath, 'utf8');
|
|
|
|
let expectedMd = await readFile(mdPath, 'utf8');
|
2018-05-12 12:48:39 +02:00
|
|
|
|
2019-09-19 23:51:18 +02:00
|
|
|
let actualMd = await htmlToMd.parse(`<div>${html}</div>`, htmlToMdOptions);
|
2018-11-08 01:35:14 +02:00
|
|
|
|
|
|
|
if (os.EOL === '\r\n') {
|
2019-07-30 09:35:42 +02:00
|
|
|
expectedMd = expectedMd.replace(/\r\n/g, '\n');
|
|
|
|
actualMd = actualMd.replace(/\r\n/g, '\n');
|
2018-11-08 01:35:14 +02:00
|
|
|
}
|
2018-05-12 12:48:39 +02:00
|
|
|
|
|
|
|
if (actualMd !== expectedMd) {
|
2020-12-02 17:43:44 +02:00
|
|
|
const result = [];
|
|
|
|
result.push('');
|
|
|
|
result.push(`Error converting file: ${htmlFilename}`);
|
|
|
|
result.push('--------------------------------- Got:');
|
2020-12-09 16:58:38 +02:00
|
|
|
result.push(actualMd.split('\n').map((l: string) => `"${l}"`).join('\n'));
|
2023-08-27 20:01:06 +02:00
|
|
|
// result.push('--------------------------------- Raw:');
|
|
|
|
// result.push(actualMd.split('\n'));
|
2020-12-02 17:43:44 +02:00
|
|
|
result.push('--------------------------------- Expected:');
|
2020-12-09 16:58:38 +02:00
|
|
|
result.push(expectedMd.split('\n').map((l: string) => `"${l}"`).join('\n'));
|
2020-12-02 17:43:44 +02:00
|
|
|
result.push('--------------------------------------------');
|
|
|
|
result.push('');
|
|
|
|
|
2023-02-16 12:55:24 +02:00
|
|
|
// eslint-disable-next-line no-console
|
2020-12-02 17:43:44 +02:00
|
|
|
console.info(result.join('\n'));
|
|
|
|
|
|
|
|
// console.info('');
|
|
|
|
// console.info(`Error converting file: ${htmlFilename}`);
|
|
|
|
// console.info('--------------------------------- Got:');
|
|
|
|
// console.info(actualMd);
|
|
|
|
// console.info('--------------------------------- Raw:');
|
|
|
|
// console.info(actualMd.split('\n'));
|
|
|
|
// console.info('--------------------------------- Expected:');
|
|
|
|
// console.info(expectedMd.split('\n'));
|
|
|
|
// console.info('--------------------------------------------');
|
|
|
|
// console.info('');
|
2018-05-12 12:48:39 +02:00
|
|
|
|
|
|
|
expect(false).toBe(true);
|
2018-05-14 19:46:04 +02:00
|
|
|
// return;
|
2018-05-12 12:48:39 +02:00
|
|
|
} else {
|
2019-07-30 09:35:42 +02:00
|
|
|
expect(true).toBe(true);
|
2018-05-12 12:48:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
|
2021-09-19 14:00:06 +02:00
|
|
|
it('should allow disabling escape', async () => {
|
|
|
|
const htmlToMd = new HtmlToMd();
|
2023-11-07 13:58:52 +02:00
|
|
|
expect(htmlToMd.parse('> 1 _2_ 3.pdf', { disableEscapeContent: true })).toBe('> 1 _2_ 3.pdf');
|
|
|
|
expect(htmlToMd.parse('> 1 _2_ 3.pdf', { disableEscapeContent: false })).toBe('\\> 1 \\_2_ 3.pdf');
|
2021-09-19 14:00:06 +02:00
|
|
|
});
|
|
|
|
|
2019-07-30 09:35:42 +02:00
|
|
|
});
|