I ran into this issue when I was working on some Markdown files that are used for my app's mailers via a dependency called maildown, which uses Kramdown as the Markdown engine.
In our mailers we sometimes use a Mailchimp/Mandrill disable tracking flag, mc:disable-tracking, which consists of a colon to namespace their attributes.
I was expecting the following Markdown to parse into the resulting HTML.
Namespaced attributes are not supported. If you need something like that, please use plain old HTML or provide a pull request for the feature - thanks!
Example of issue
Take the following example using an IAL:
It'll render the following:
I was expecting the following:
Real use case
I ran into this issue when I was working on some Markdown files that are used for my app's mailers via a dependency called
maildown
, which uses Kramdown as the Markdown engine.In our mailers we sometimes use a Mailchimp/Mandrill disable tracking flag,
mc:disable-tracking
, which consists of a colon to namespace their attributes.I was expecting the following Markdown to parse into the resulting HTML.
Just the verify that IAL is working on my system, the following worked as expected.
Things I tried...
I tried surrounding the attribute name with single and double quotes.
I haven't dug into the project source code yet to understand where the issue (if it is one) lies.