I have a library (let´s call it "myLib") documented using Doxygen that does some (external) references/linking; for that I am using the <a href="../path/to/other/documentation/page/index.html">OtherDoc</a> syntax. That´s perfectly fine; working properly. The side effect is that when I click on the link (and goes to the OtherDoc page) I have no way to go back to myLib if not using the browser "go back" button.
What I was thinking so solve this issue is to maintain a "myLib" header (or as a "footnote") when the user goes to the "OtherDoc" linked page. My question is: How do I do that in Doxygen? Also, is there a better way to solve this "back link" issue?
Obs: The "OtherDoc" html pages are also doxygen generated documentation of another library I have, but it (OtherDoc) doesn't know about "myLib"; so, I would not like to put links on its documentation to "myLib".
Thanks in advance. []