mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-23 10:07:19 +00:00
Corrected incorrect image source for markdown (#4680)
This commit is contained in:
parent
5b9dbf7b95
commit
b0485eef6a
@ -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") {
|
||||
|
Loading…
Reference in New Issue
Block a user