在我用pure HTML完成的原始链接中,我有一个类属性,如:
<a href="http://example.com" class="noborder">my link</a>
如何将其翻译为Markdown?我不知道该如何上课。
[mylink](http://example.com)
答案 0 :(得分:42)
## A header with an id ## {: #the-head}
// => <h2 id="the-head">A header with an id</h2>
[a special url](/my-special-place.html){: .special}
// => <a href="/my-special-place.html" class="special">a special url</a>
A paragraph with a random attribute
{: random=attribute}
// => <p random="attribute">A paragraph with a random attribute</p>
有关更多信息,请查看Maruku meta-data proposal。
答案 1 :(得分:39)
您不能将类放入Markdown语法中。在大多数Markdown实现中,您可以嵌入HTML,因此使用原始HTML可能会有效。
John Gruber(Markdown的创造者)甚至这样做: