diff options
| -rw-r--r-- | src/about/help.gemini | 1 | ||||
| -rw-r--r-- | src/browsertab.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/about/help.gemini b/src/about/help.gemini index f273923..ed83991 100644 --- a/src/about/help.gemini +++ b/src/about/help.gemini @@ -427,6 +427,7 @@ If you would like to disable page caching, set the [Total cache size limit] to 0 * text/plain * text/gemini * text/html +* application/xhtml+xml * text/markdown * text/gophermap * image/* diff --git a/src/browsertab.cpp b/src/browsertab.cpp index fa4ed9a..f790e8e 100644 --- a/src/browsertab.cpp +++ b/src/browsertab.cpp @@ -649,7 +649,7 @@ void BrowserTab::renderPage(const QByteArray &data, const MimeType &mime) this->current_location, doc_style); } - else if (not plaintext_only and mime.is("text","html")) + else if (not plaintext_only and mime.is("text","html") or mime.is("application","xhtml+xml")) { document = HtmlRenderer::render( data, |
