From c18fd7e6436243435d6b21934e943f54509b6e5f Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Fri, 25 Jan 2013 21:10:02 -0800 Subject: [PATCH] RST reader: Allow anonymous form of explicit links. `hello `__ Closes #724. --- src/Text/Pandoc/Readers/RST.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Text/Pandoc/Readers/RST.hs b/src/Text/Pandoc/Readers/RST.hs index c7b37066aaf3..c5e2617dae34 100644 --- a/src/Text/Pandoc/Readers/RST.hs +++ b/src/Text/Pandoc/Readers/RST.hs @@ -962,6 +962,7 @@ explicitLink = try $ do src <- manyTill (noneOf ">\n") (char '>') skipSpaces string "`_" + optional $ char '_' -- anonymous form return $ B.link (escapeURI $ trim src) "" label' referenceLink :: RSTParser Inlines