Is there markdown syntax for the equivalent of:
Take me to <a href="#pookie">pookie</a>
...
<a name="pookie">this is pookie</a>
|
Is there markdown syntax for the equivalent of:
| ||||
|
feedback
|
should be the correct markdown syntax to jump to the anchor point named pookie. To insert an anchor point of that name use html (actually xhtml -- see below):
Markdown doesn't seem to mind where you put the anchor point. A useful place to put it is in a header. For example:
works very well. (I'd demonstrate here but SO's renderer strips out the anchor, apparently.) Note about HTML and XHTMLXHTML allows any tag to be 'empty' and 'self-closed'. That is,
will work everywhere. Finally, the form | |||||||||||||
feedback
|
|
There's no readily available syntax to do this in the original Markdown syntax, but Markdown Extra provides a means to at least assign IDs to headers — which you can then link to easily. Note also that you can use regular HTML in both Markdown and Markdown Extra, and that the | |||
|
feedback
|