Skip Menu |

This queue is for tickets about the HTML-WikiConverter-Markdown CPAN distribution.

Report information
The Basics
Id: 97384
Status: resolved
Priority: 0/
Queue: HTML-WikiConverter-Markdown

People
Owner: Jeff.Fearn [...] gmail.com
Requestors: Jeff.Fearn [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.05
Fixed in: 0.06



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;