Parse links after footnotes

This commit is contained in:
2026-07-14 21:35:50 +02:00
parent 9355c098e0
commit 1d790c3d4a
+1 -1
View File
@@ -816,8 +816,8 @@ parse :: proc(lines: []string, allocator := context.allocator) -> Token {
for token in root.children { for token in root.children {
parse_inline_code(token) parse_inline_code(token)
parse_embeds(token) parse_embeds(token)
parse_links(token)
parse_inline_footnotes(token) parse_inline_footnotes(token)
parse_links(token)
pass_through_children(token) pass_through_children(token)
} }