1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-09-16 08:56:40 +02:00

Desktop: Fixes #5873 (Regression): Fixed export of HTML files on Linux

This commit is contained in:
Laurent Cozic
2021-12-18 13:50:24 +01:00
parent 80ae845741
commit 5462ee635c

View File

@@ -50,7 +50,7 @@ const attributesHtml = (attr: any) => {
const attrValue = (attrs: any, name: string): string => {
if (!attrs[name]) return '';
return attrs[name].toLowerCase();
return attrs[name];
};
const isSelfClosingTag = (tagName: string) => {