not used anymore

This commit is contained in:
Bruno Windels 2021-07-16 19:16:06 +02:00
parent b5b19abb24
commit 2ce6cea4ff

View File

@ -87,7 +87,6 @@ const formatFunction = {
header: headerBlock => tag["h" + Math.min(6,headerBlock.level)]({}, renderParts(headerBlock.inlines)),
codeblock: codeBlock => tag.pre({}, tag.code({}, text(codeBlock.text))),
table: tableBlock => renderTable(tableBlock),
emph: emphPart => tag.em({}, renderParts(emphPart.inlines)),
code: codePart => tag.code({}, text(codePart.text)),
text: textPart => text(textPart.text),
link: linkPart => tag.a({href: linkPart.url, className: "link", target: "_blank", rel: "noopener" }, renderParts(linkPart.inlines)),