diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2017-04-16 21:19:35 +0200 |
---|---|---|
committer | Albert Krewinkel <albert@zeitkraut.de> | 2017-04-16 21:19:35 +0200 |
commit | 464db59394e5ff0e366e1dab40c3edbf7ea32dac (patch) | |
tree | abd89f11925311926bbab295f3979051e5f50956 /src/Text/Pandoc/Readers/Org | |
parent | 1c8683f205c6e0b028dd62a13936d9a9f6124270 (diff) | |
download | pandoc-464db59394e5ff0e366e1dab40c3edbf7ea32dac.tar.gz |
Org reader: allow emphasized text to be followed by `[`
Closes: #3577
Diffstat (limited to 'src/Text/Pandoc/Readers/Org')
-rw-r--r-- | src/Text/Pandoc/Readers/Org/Inlines.hs | 2 |
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] |