aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2021-03-04 16:25:13 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2021-03-04 16:25:13 -0800
commit030209fc292bd51700189653fd38ae5b2a723ef1 (patch)
tree62f8671bc55724ab5398ef3464de20e95fd6b475
parent916ce4d51121e0529b938fda71f37e947882abe5 (diff)
downloadpandoc-030209fc292bd51700189653fd38ae5b2a723ef1.tar.gz
Revert "Revert "Relax `--abbreviations` rules so that a period isn't required.
This reverts commit 916ce4d51121e0529b938fda71f37e947882abe5. I was confused in thinking it wouldn't work.
-rw-r--r--MANUAL.txt6
-rw-r--r--src/Text/Pandoc/Readers/Markdown.hs2
2 files changed, 4 insertions, 4 deletions
diff --git a/MANUAL.txt b/MANUAL.txt
index 52b82a3d0..667a784e0 100644
--- a/MANUAL.txt
+++ b/MANUAL.txt
@@ -691,9 +691,9 @@ header when requesting a document from a URL:
system default, use
`pandoc --print-default-data-file=abbreviations`. The only
use pandoc makes of this list is in the Markdown reader.
- Strings ending in a period that are found in this list will
- be followed by a nonbreaking space, so that the period will
- not produce sentence-ending space in formats like LaTeX.
+ Strings found in this list will be followed by a nonbreaking
+ space, and the period will not produce sentence-ending space
+ in formats like LaTeX. The strings may not contain spaces.
[`pandocfilters`]: https://github.com/jgm/pandocfilters
[PHP]: https://github.com/vinai/pandocfilters-php
diff --git a/src/Text/Pandoc/Readers/Markdown.hs b/src/Text/Pandoc/Readers/Markdown.hs
index b1b99dfe5..34edbcc17 100644
--- a/src/Text/Pandoc/Readers/Markdown.hs
+++ b/src/Text/Pandoc/Readers/Markdown.hs
@@ -1725,7 +1725,7 @@ str = do
updateLastStrPos
(do guardEnabled Ext_smart
abbrevs <- getOption readerAbbreviations
- if not (T.null result) && T.last result == '.' && result `Set.member` abbrevs
+ if result `Set.member` abbrevs
then try (do ils <- whitespace
notFollowedBy (() <$ cite <|> () <$ note)
-- ?? lookAhead alphaNum