I am using Octopress and I know that in order to add an image in my post, instead of writing:
<img src="src" alt="alt" class="class" />
I can write:
{% img class src alt %}
And, instead if writing:
<a href="href">text</a>
I can write:
[text](href)
But how can I write:
<a href="href" target="target">text</a>
?
If this is not possible and the only solution is to write the html tag, where and how can I add ruby code translate this for example: [text](href target)
to this: <a href="href" target="target">text</a>
?
In addition, where can I find a list of all those html octopress shortcuts?