Quote:
Originally Posted by Binchen
By the way, what is the last column in the link report is tellinh me? Column name is match with values yes, no and _blank_ but i have no idea what its trying to tell me.
|
The "Match?" column?
"Yes"
This lets you know if there's 2
href + id that point back to each other. For example:
Code:
<p>Example link that matches.<a href="#fn1" id="ft1">[1]</a></p>
- - -
<p class="footnote"><a href="#ft1" id="fn1">[1]</a> Points back to the first note in the text.</p>
You can see
green href matches with
green id in footnote.
And
blue id matches with
blue href in footnote.
"No"
But let's say you had a 2nd link that pointed to the same location:
Code:
<p>Example link that matches.<a href="#fn1" id="ft1">[1]</a></p>
<p>But this one points one-way.<a href="#fn1" id="ft1-2">[1]</a></p>
- - -
<p class="footnote"><a href="#ft1" id="fn1">[1]</a> Points back to the first note in the text.</p>
Now you can see a
red id that doesn't have anything pointing back to it.
In this case, the "Matches?" column will say:
2 "Yes" = the green/blue links
1 "No" = the red link, because nothing points back to
ft1-2.
Blank
This means it's a URL, or pointing to an id that doesn't exist in the book:
Code:
<p>Visit <a href="http://www.example.com">http://www.example.com</a> and the note.<a href="#fn999" id="ft999">[999]</a></p>
In these 2 cases, the "Target exists?" column will say:
"n/a" = URL
"no" = broken note, doesn't point to anything.