Is there markdown syntax for the equivalent of:

Take me to <a href="#pookie">pookie</a>

... 

<a name="pookie">this is pookie</a>
link|improve this question

feedback

2 Answers

up vote 27 down vote accepted
Take me to [pookie](#pookie)

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):

<a id="pookie" />

Markdown doesn't seem to mind where you put the anchor point. A useful place to put it is in a header. For example:

### <a id="tith" />This is the Heading

works very well. (I'd demonstrate here but SO's renderer strips out the anchor, apparently.)

Note about HTML and XHTML

XHTML allows any tag to be 'empty' and 'self-closed'. That is, <tag /> is short-hand for an empty body and a closing tag <tag></tag>. Most browsers will accept XHTML, but it does depend upon how your Markdown renderer describes the document. If it gets it wrong, it could barf on the self-closed anchor tag, in which case the form

<a id="tith"></a>

will work everywhere.

Finally, the form <a name="tith"/> will likely work, but is deprecated in XHTML, so the form <a id="tith"/> is recommended always.

link|improve this answer
You can't see how to link to your heading demo after StackOverflow renders the HTML because their rendered is stripping out your <a> tag. That is, you can't in StackOverflow Markdown. – Slipp Douglas Apr 13 at 18:58
However, this will work in other, more-liberal Markdown renderers, but you'll need a closing <a> tag; the <a> tag doesn't allow self-closing. Also, I found my browser to skip past the header unless the <a> tag is before the header's contents. Corrections made to your examples. – Slipp Douglas Apr 13 at 19:22
1  
Slipp: Thanks for the explanation. Self-closing <a> tags work fine for me. Can you give a reference? – Steve Powell Apr 17 at 9:54
Well, in the browsers I tested (Chrome 18, Firefox 11, and Safari 5.1 on Mac OS X) it turns the rest of the page into a link. I'll see if I can dig up anything in the HTML spec. – Slipp Douglas Apr 18 at 18:21
Slipp: I'm using Chrome 18 and Safari 5.1 on the Mac too. What Markdown renderer did you use? – Steve Powell Apr 19 at 15:58
show 11 more comments
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 name attribute has been superseded by the id attribute in more recent versions of HTML.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.