Line Breaks In Links
Closed this issue ยท 3 comments
subthedubdub commented
Linebreaks in link descriptions do not get parsed properly. It works in Emacs (v28, at least).
Input
[[www.something.com][line1
line2]]
Output
{
"type": "paragraph",
"affiliated": {},
"contentsBegin": 0,
"contentsEnd": 34,
"children": [
{
"type": "text",
"value": "[[www.something.com][line1\nline2]]"
}
Expected Output
{
"type": "link",
"format": "bracket",
"linkType": "fuzzy",
"rawLink": "www.something.com",
"path": "www.something.com",
"contentsBegin": 21,
"contentsEnd": 32,
"children": [
{
"type": "text",
"value": "line1 line2"
}
]
}
subthedubdub commented
Dang, that was the fastest fix I've seen to any issue. ๐
rasendubi commented
haha, thanks ๐ ping back if that doesn't work or you have any other issue