summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert@zeitkraut.de>2017-04-16 21:19:35 +0200
committerAlbert Krewinkel <albert@zeitkraut.de>2017-04-16 21:19:35 +0200
commit464db59394e5ff0e366e1dab40c3edbf7ea32dac (patch)
treeabd89f11925311926bbab295f3979051e5f50956 /src
parent1c8683f205c6e0b028dd62a13936d9a9f6124270 (diff)
Org reader: allow emphasized text to be followed by `[`
Closes: #3577
Diffstat (limited to 'src')
-rw-r--r--src/Text/Pandoc/Readers/Org/Inlines.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Org/Inlines.hs b/src/Text/Pandoc/Readers/Org/Inlines.hs
index 4e61bc695..31bfe4478 100644
--- a/src/Text/Pandoc/Readers/Org/Inlines.hs
+++ b/src/Text/Pandoc/Readers/Org/Inlines.hs
@@ -731,7 +731,7 @@ emphasisPreChars = "\t \"'({"
-- | Chars allowed at after emphasis
emphasisPostChars :: [Char]
-emphasisPostChars = "\t\n !\"'),-.:;?\\}"
+emphasisPostChars = "\t\n !\"'),-.:;?\\}["
-- | Chars not allowed at the (inner) border of emphasis
emphasisForbiddenBorderChars :: [Char]