View Single Post
Old 07-24-2021, 03:28 AM   #6
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,306
Karma: 13057279
Join Date: Jul 2012
Device: Kobo Forma, Nook
Quote:
Originally Posted by Binchen View Post
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.

Last edited by Tex2002ans; 07-24-2021 at 03:48 AM.
Tex2002ans is offline   Reply With Quote