Subject: | titles in inlines links are note quoted |
Titles in inline links need to be quoted otherwise spaces in titles break linking.
Markdown.pm Line 178:
- return sprintf "[%s](%s %s)", $text, $url, $title if $title;
+ return sprintf "[%s](%s \"%s\")", $text, $url, $title if $title;