我正在使用 Octopress,我知道为了在我的帖子中添加图片,而不是写:
<img src="src" alt="alt" class="class" />
我可以写:
{% img class src alt %}
而且,如果写:
<a href="href">text</a>
我可以写:
[text](href)
但是我该怎么写:
<a href="href" target="target">text</a>
?
如果这是不可能的,唯一的解决方案是编写 html 标记,我可以在哪里以及如何添加 ruby 代码将其翻译为例如:[text](href target)
to this: <a href="href" target="target">text</a>
?
此外,我在哪里可以找到所有这些 html octopress 快捷方式的列表?