How do I write this in textile (i'm using the redcloth gem)

<a href="#tips">Visit the Useful Tips Section</a>
<a name="tips">Useful Tips Section</a>

I know the first part, "Visit the Useful Tips Section":#tips but how do I make the named anchor?

Thanks!

Deb

link|improve this question

1  
h1(#tips) Useful Tips Section. -- Achieves the same effect (with some css) but doesn't really answer the question. – Noel Walters Aug 18 '10 at 0:55
thanks Noel, that's good enough for me :) – deb Aug 18 '10 at 1:12
hi noel, do you want to add your comment as an answer so I can accept it? :) – deb May 5 '11 at 13:54
feedback

2 Answers

The textile manual seems to indicate that there's no way to do so other than just using straight HTML:

<a name="tips"></a>
<h1>Useful Tips Section</h1>

The answer that suggests:

h1(#tips). Useful Tips Section

is incorrect as it will generate:

<h1 id="tips">Useful Tips Section</h1>

which is not a named anchor. However, you could use some Javascript to make this work.

link|improve this answer
feedback
up vote 0 down vote accepted

h1(#tips) Useful Tips Section. -- Achieves the same effect (with some css)

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.