Closed
Description
This is prompted by lierdakil/pandoc-crossref#210
Long story short, I would expect pandoc to parse (@someCitation
as
[Para [Str "("
,Cite
[Citation {
citationId = "someCitation"
, citationPrefix = []
, citationSuffix = []
, citationMode = AuthorInText
, citationNoteNum = 0
, citationHash = 0
}]
[Str "@someCitation"]
]
]
This is not what actually happens though:
$ pandoc -f markdown -t native <<< '(@someCitation'
yields
[Para [Str "(@someCitation"]]
I'm pretty sure the culprit is line 1414 here:
pandoc/src/Text/Pandoc/Parsing.hs
Lines 1411 to 1424 in a36d202
While on topic, this also becomes an issue at least in one other place where notAfterString
is used, actually. Consider this (with smart
extension):
pandoc -f markdown -t native <<< "('asd')"
[Para [Str "(\8217asd\8217)"]]
when I would expect something to the tune of
[Para [Str "(",Quoted SingleQuote [Str "asd"],Str ")"]]
instead.