Merge pull request #1266 from pproe/use_http_client_2

This commit is contained in:
SleeplessOne1917 2023-06-14 15:51:58 +00:00 committed by GitHub
commit 1d615cc629
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,7 +43,10 @@ export class HtmlTags extends Component<HtmlTagsProps, any> {
<meta <meta
key={n} key={n}
name={n} name={n}
content={htmlToText(md.renderInline(desc))} content={htmlToText(md.renderInline(desc), {
wordwrap: false,
preserveNewlines: true,
})}
/> />
) )
)} )}