You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-29 22:48:10 +02:00
Chore: Fixed Crowdin translation issues
This commit is contained in:
@@ -95,7 +95,9 @@ const parseHtml = (html: string) => {
|
||||
attrHtml.push(`${n}=${escapedValue}`);
|
||||
}
|
||||
|
||||
output.push(`<${name} ${attrHtml.join(' ')}${closingSign}`);
|
||||
const closingSpace = isSelfClosingTag(name) || !!attrHtml.length ? ' ' : '';
|
||||
|
||||
output.push(`<${name}${attrHtml.length ? ` ${attrHtml.join(' ')}` : ''}${closingSpace}${closingSign}`);
|
||||
},
|
||||
|
||||
ontext: (decodedText: string) => {
|
||||
|
||||
Reference in New Issue
Block a user