[Doxygen-develop] Xml & Page & Link
Brought to you by:
dimitri
From: <ca...@Cr...> - 2002-03-14 07:52:12
|
Hi. There are some question on xml output.=20 Most of all links (ref) use syntax <ref refid=3DID>, why link to the = subsection use another syntax <link linkend=3DSOME>? And why SOME is not = is a ID of the section. =20 For example (some part of example\page.cfg), lets there is a page : <compounddef id=3D"page1" kind=3D"page"> ... <sect2 id=3D"subsection1"></sect2> ... </compounddef> =20 At doxygen output a reference to the section looks like <link = linkend=3D"page1_subsection1">Link</link> ------------------------------------------------- Why it is not used syntax: <compounddef id=3D"page1" kind=3D"page"> ... <sect2 id=3D"page1_subsection1"></sect2> ~~~~~~~~~~~~~~ ... </compounddef> =20 <ref refid=3D"page1_subsection1" kindref=3D"page">Link</ref> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -------------------------------------------------- Ore syntax <compounddef id=3D"page1" kind=3D"page"> ... <sect2 id=3D"page1_subsection1"></sect2> ~~~~~~~~~~~~~~ ... </compounddef> =20 <link linkend=3D"page1_subsection1">Link</link> -------------------------------------------------- =20 - Alexandr Chelpanov - |