bhollis / maruku

A pure-Ruby Markdown-superset interpreter (Official Repo).
MIT License
502 stars 80 forks source link

Version 0.7.0 introduced a regression with ellipses (...) #130

Closed stomar closed 10 years ago

stomar commented 10 years ago

An ellipsis at the end of a paragraph is not rendered.

Test code:

gem "maruku", "0.7.1"
require "maruku"

puts "Version: #{Maruku::Version}"
puts Maruku.new("a paragraph... continued...").to_html

Output (for different gem versions):

Version: 0.6.1
<p>a paragraph&#8230; continued&#8230;</p>

Version: 0.7.0
<p>a paragraph… continued</p>

Version: 0.7.1
<p>a paragraph… continued</p>
bhollis commented 10 years ago

Resolving in favor of #131.