diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2019-03-15 18:53:30 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2019-03-15 18:53:30 -0600 |
| commit | 9bed2c0e9c3b66c6eae6254d645693ce7b1c1966 (patch) | |
| tree | 665e8f38c695c66620e153e49ad9579ac36b4d3a | |
| parent | 1ef5bbbb55c590fb2a274886d7f59fa377fd43e6 (diff) | |
ellipsis should be :none replacement, not :leading
| -rw-r--r-- | lib/asciidoctor.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asciidoctor.rb b/lib/asciidoctor.rb index 6105d450..fb6df795 100644 --- a/lib/asciidoctor.rb +++ b/lib/asciidoctor.rb @@ -1188,7 +1188,7 @@ module Asciidoctor # foo--bar [/(#{CG_WORD})\\?--(?=#{CG_WORD})/, '—​', :leading], # ellipsis - [/\\?\.\.\./, '…​', :leading], + [/\\?\.\.\./, '…​', :none], # right single quote [/\\?`'/, '’', :none], # apostrophe (inside a word) |
