Corrected incorrect image source for markdown (#4680)

optimising-macrocalls
Cameron Fischer 2020-06-11 07:03:16 -04:00 zatwierdzone przez GitHub
rodzic 5b9dbf7b95
commit b0485eef6a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -144,7 +144,7 @@ function convertNodes(remarkableTree, isStartOfInline) {
type: "image",
attributes: {
tooltip: { type: "string", value: currentNode.alt },
source: { type: "string", value: currentNode.src }
source: { type: "string", value: decodeURIComponent(currentNode.src) }
}
});
} else if (currentNode.type === "softbreak") {