It can be useful to embed tags with namespaces and have them pass through correctly. Some parsers already support this: ``` irb(main):002:0> Kramdown::Document.new("<foo:bar>\nbaz\n</foo:bar>").to_html => "<foo:bar>\nbaz\n</foo:bar>\n" ``` Tag names and attribute names should be allowed to contain `:`. Further discussion: - https://github.com/gjtorikian/commonmarker/pull/123 - https://github.com/mity/md4c/issues/112
It can be useful to embed tags with namespaces and have them pass through correctly.
Some parsers already support this:
Tag names and attribute names should be allowed to contain
:.Further discussion: