我正在使用 pdf make 将HTML内容转换为文本并下载为pdf。
问题是,粗体标签中的文本未正确转换。 有人可以帮我解决这个问题吗?
请参考下面的代码-
我将HTML内容存储在编码的字符串中
const parser = new DOMParser();
const dom = parser.parseFromString(
`<!doctype html><body>${encodedStr}`,
'text/html');
const decodedString = dom.body.textContent;
const document = { content: [{ text: decodedString, fontSize: 15, alignment: 'justify' } ], pageOrientation: 'portrait', pageSize: 'A4' };
pdfMake.createPdf(document).download(downloadFileName);
Example content i'm using:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<p><strong>Bold text</strong></p><p><strong>I. Text in Bold</strong><br>
<p>Text</p>
</body>
</html>