preserve details tag in markdown export

This commit is contained in:
Philipinho 2024-07-22 14:09:52 +01:00
parent 5052a9ea40
commit 373fc86e47

View File

@ -18,13 +18,12 @@ export function turndown(html: string): string {
highlightedCodeBlock,
taskList,
callout,
toggleListTitle,
toggleListBody,
preserveDetail,
listParagraph,
mathInline,
mathBlock,
]);
console.log(turndownService.turndown(html));
return turndownService.turndown(html).replaceAll('<br>', ' ');
}
@ -74,29 +73,23 @@ function taskList(turndownService: TurndownService) {
});
}
function toggleListTitle(turndownService: TurndownService) {
turndownService.addRule('toggleListTitle', {
function preserveDetail(turndownService: TurndownService) {
turndownService.addRule('preserveDetail', {
filter: function (node: HTMLInputElement) {
return (
node.nodeName === 'SUMMARY' && node.parentNode.nodeName === 'DETAILS'
);
return node.nodeName === 'DETAILS';
},
replacement: function (content: any, node: HTMLInputElement) {
return '- ' + content;
},
});
}
// TODO: preserve summary of nested details
const summary = node.querySelector(':scope > summary');
let detailSummary = '';
function toggleListBody(turndownService: TurndownService) {
turndownService.addRule('toggleListContent', {
filter: function (node: HTMLInputElement) {
return (
node.getAttribute('data-type') === 'detailsContent' &&
node.parentNode.nodeName === 'DETAILS'
);
},
replacement: function (content: any, node: HTMLInputElement) {
return ` ${content.replace(/\n/g, '\n ')} `;
if (summary) {
detailSummary = `<summary>${turndownService.turndown(summary.innerHTML)}</summary>`;
summary.remove();
}
const detailsContent = turndownService.turndown(node.innerHTML);
return `\n<details>\n${detailSummary}\n\n${detailsContent}\n\n</details>\n`;
},
});
}
@ -124,7 +117,7 @@ function mathBlock(turndownService: TurndownService) {
);
},
replacement: function (content: any, node: HTMLInputElement) {
return `$$${content}$$`;
return `\n$$${content}$$\n`;
},
});
}