Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

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

Report information
The Basics
Id: 119942
Status: new
Priority: 0/
Queue: Text-Markdown

People
Owner: Nobody in particular
Requestors: nrc [...] offcamber.org
Cc:
AdminCc:

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



Subject: Link attributes not working on numeric reference links
Date: Mon, 23 Jan 2017 01:03:23 -0500 (EST)
To: bug-Text-Markdown [...] rt.cpan.org
From: Richard Caldwell <nrc [...] offcamber.org>
Numeric link references work, but if you add a link attribute it is not included in the output. Implicitly named link references have this same bug. Example input : ---- This is a footnote style [reference link][1] with an attribute. [1]: http://domain.com "reference" target=_blank ---- Expected output: --- <p>This is a footnote style <a href="http://domain.com" title="reference" target="_blank">reference link</a> with an attribute.</p> --- Actual output: --- <p>This is a footnote style <a href="http://domain.com" title="reference">reference link</a> with an attribute.</p> ---