Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using WebHelp to render my DocBook document.

Within my DocBook file, if I have an anchor as follows:

<anchor id="thisIsSomeExample" />

I am able to reach it within my WebHelp render using a URL such as:

http://localhost:8080/MyWebHelpProject/book/pages/ch01s01.html#thisIsSomeExample

This is great, but what I really want to be able to do is find that anchor, irrespective of what section of whatever chapter is currently open on my screen:

http://localhost:8080/MyWebHelpProject/book/pages/#thisIsSomeExample

Is this possible?

Edit: Following the sound suggestion of @Sitapati Das to render the entire document in one page I must add that we require to split the document up by chapter. The document is very large (over 300 pages when printed in A4).

share|improve this question
What do you mean by 'my WebHelp render'? A web browser? Then probably not, or you would need to search for a smart plugin (or build one) that can search through multiple documents (=files). – Verhagen Oct 4 '12 at 17:50
The WebHelp war file produced by the DocBkX plugin. wiki.docbook.org/WebHelp. I ask the question as I anticipate that this is a common requirement. – 7SpecialGems Oct 17 '12 at 15:01

1 Answer

up vote 0 down vote accepted

This would be possible if you render your help file as html-single, and use unique anchor IDs.

share|improve this answer
Thanks for the suggestion. However it is a requirement for us to break up the document by chapter (so one XML DocBook document per chapter), as the document is very large (over 300 pages when printed in A4) – 7SpecialGems Nov 13 '12 at 10:41
I have accepted this answer because I now understand that this is the only way to achieve a global unique anchor ID within DocBook. It is not possible to specify one at a high level and it to apply to all child pages. – 7SpecialGems Jan 17 at 13:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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