-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Closed
Labels
Description
Marked version: "^11.1.1"
Describe the bug
Markdown is parsing data incorrectly when no whitespace is provided between citations. So inputting the following markdown:
1. **Issuance Details**
- John Smith: 10,000 pieces of pie [1:1][1:2][1:3]
[1:1]: ?citation=123
[1:2]: ?citation=123
[1:3]: ?citation=123
Will parse the data as 1:11:3
To Reproduce
To reproduce, take the markdown string above and play around with it:
Expected behavior
I would expect the output to be 1:1 1:2 1:3
I'm not entirely sure if this is a bug or not so feel free to close this out if it isn't. For all those that do come across this same issue, inserting whitespace after each of the citations resolved the issue. So the markdown string:
- John Smith: 10,000 pieces of pie [1:1] [1:2] [1:3]
parses correctly