Return True if word is a Valid Usage ID Tag anchor.
(self, word)
| 138 | return True |
| 139 | |
| 140 | def vuidAnchor(self, word): |
| 141 | """Return True if word is a Valid Usage ID Tag anchor.""" |
| 142 | return (word.startswith('[[VUID-')) |
| 143 | |
| 144 | def visitVUID(self, vuid, line): |
| 145 | if vuid not in self.vuidDict: |