false
to not check the validity of the link even if the configuration property specifies that links should be checked[1]
-- > myRef.html wiki -- > index.html ---- > articles -------- > article1.htmland you have the following article:
<article desc="article1"> The <a href="myRef.html">reference</a>. </article>The link will point to the
myRef.html
file.-- > myRef.html wiki -- > index.html ---- > articles -------- > article1.htmland you have the following article:
<article desc="article1"> The <a href="myRef.html">reference</a>. </article>The html link will be:
The <a href="../../myRef.html">reference</a>.However it is possible for the write to specify that these relative links will be written instead as absolute. This is the case for:
<setBaseURL path="href" /> <a href="theFile.xml">The ref</a>Is equivalent to:
<a href="href/theFile.xml">The ref</a>
This is an <a href="http://docs.oracle.com/javase/8/docs/api/index.html">external link</a>Result: This is an external link
docJGenerator Copyright (c) 2016-2023 Herve Girod. All rights reserved.