You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// [Issue 260](https://github.com/Feel-ix-343/markdown-oxide/issues/260) covers an issue with parentheses on a new line after a mdlink being parsed as another link.
1962
+
1963
+
let text = r#"
1964
+
Buggy cross [link](path/to/link#^index1):
1965
+
1966
+
(this causes bug)
1967
+
"#;
1968
+
1969
+
let parsed = Reference::new(text,"test.md").collect_vec();
1970
+
1971
+
let expected = vec![Reference::MDIndexedBlockLink(
0 commit comments