Closed kainjow closed 10 years ago
I just did gem install maruku on 10.9.1 and seem to have found an issue with https links.
gem install maruku
This works fine:
puts Maruku.new("<http://google.com>").to_html
But this spits out the "Maruku cannot parse this block of HTML/XML" error:
puts Maruku.new("<https://google.com>").to_html
If I add text beforehand it works:
puts Maruku.new("Test <https://google.com>").to_html
I am also using the latest source on Windows and see it there too.
Looks like a tiny bug with a regex. Will test and fix for 0.7.2. In the meantime, you already know the workarounds:
[https://google.com](https://google.com)
Thanks for the quick fix!
I just did
gem install maruku
on 10.9.1 and seem to have found an issue with https links.This works fine:
But this spits out the "Maruku cannot parse this block of HTML/XML" error:
If I add text beforehand it works:
I am also using the latest source on Windows and see it there too.