문제

In a Maven site doc I use code like this for sections:

<section name="Hibernate statistics">
  Foo
</section>

How do I tell Doxia I want the section name/title to be an HTML local anchor? http://maven.apache.org/doxia/references/doxia-apt.html#Anchors does talk about this but I've been unable to apply it to <section>s.

도움이 되었습니까?

해결책

I still don't know how to do it "properly". However, there's a pretty simple and painless workaround; use the id attribute:

<section name="Hibernate statistics" id="hibernate-statistics">
  Foo
</section>

id ends up in the HTML markup as-is. Most browsers nowadays support using ids as anchors: http://server/page.html#hibernate-statistics

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top