Cross-reference (named anchor) in markdown
Is there markdown syntax for the equivalent of: Take me to <a href="#pookie">pookie</a> ... <a name="pookie">this is pookie</a> Steve Powell 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: <a name="pookie"></a> 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 name="tith"></a>This is the Heading works very well. (I'd demonstrate here but SO's renderer strips out the anchor.) Note on self-closing tags and id=