Since, _StripLinkDefinitions() is called after _HashHTMLBlocks(),
so current Text::Markdown cannot generate link in markdown enabled tag(markdown="1").
I'm not sure if there's side effects on other parts of Text::Markdown.
But it seems that the patch fixes the problem.
If this patch is applied, _Markdown() method of Text::MultiMarkdown has to be changed(removing _StripLinkDefinitions()), too.
Since,
_StripLinkDefinitions()
is called after_HashHTMLBlocks()
, so currentText::Markdown
cannot generate link in markdown enabled tag(markdown="1"
).I'm not sure if there's side effects on other parts of
Text::Markdown
. But it seems that the patch fixes the problem.If this patch is applied,
_Markdown()
method ofText::MultiMarkdown
has to be changed(removing_StripLinkDefinitions()
), too.