Open stemar opened 3 years ago
Thank you for your great library.
Reference: protected function parseAttributeData($attributeString) https://github.com/erusev/parsedown-extra/blob/master/ParsedownExtra.php#L592
protected function parseAttributeData($attributeString)
Special attributes {lang=fr} are not parsed. We should be able to type {target=_blank} and get the target="_blank" attribute added in the tag.
{lang=fr}
{target=_blank}
target="_blank"
Michelf has coded it: here and here His doc is here
Hi @stemar! My extension has this feature. You might want to try it out.
Thank you for your great library.
Reference:
protected function parseAttributeData($attributeString)
https://github.com/erusev/parsedown-extra/blob/master/ParsedownExtra.php#L592Special attributes
{lang=fr}
are not parsed. We should be able to type{target=_blank}
and get thetarget="_blank"
attribute added in the tag.Michelf has coded it: here and here His doc is here