mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 19:09:32 +00:00
Merge pull request #1915 from eikek/fix-weasyprint-text-files
Fix html conversion for text files
This commit is contained in:
commit
a943e6d977
@ -82,13 +82,26 @@ object Conversion {
|
|||||||
Chunk.byteVector(ByteVector.view(html.getBytes(StandardCharsets.UTF_8)))
|
Chunk.byteVector(ByteVector.view(html.getBytes(StandardCharsets.UTF_8)))
|
||||||
)
|
)
|
||||||
.covary[F]
|
.covary[F]
|
||||||
WkHtmlPdf.toPDF(
|
cfg.htmlConverter match {
|
||||||
cfg.wkhtmlpdf,
|
case HtmlConverter.Wkhtmltopdf =>
|
||||||
cfg.chunkSize,
|
WkHtmlPdf.toPDF(
|
||||||
StandardCharsets.UTF_8,
|
cfg.wkhtmlpdf,
|
||||||
sanitizeHtml,
|
cfg.chunkSize,
|
||||||
logger
|
StandardCharsets.UTF_8,
|
||||||
)(bytes, handler)
|
sanitizeHtml,
|
||||||
|
logger
|
||||||
|
)(bytes, handler)
|
||||||
|
|
||||||
|
case HtmlConverter.Weasyprint =>
|
||||||
|
Weasyprint.toPDF(
|
||||||
|
cfg.weasyprint,
|
||||||
|
cfg.chunkSize,
|
||||||
|
StandardCharsets.UTF_8,
|
||||||
|
sanitizeHtml,
|
||||||
|
logger
|
||||||
|
)(bytes, handler)
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
case MimeType.ImageMatch(mt) =>
|
case MimeType.ImageMatch(mt) =>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user