-
Notifications
You must be signed in to change notification settings - Fork 0
Notes on Structure
James Tauber edited this page Apr 18, 2024
·
9 revisions
- title page
- abbreviations
- note
- principal variations of form or spelling
- glossary
- index of names
- trailer
See entry_patterns.py (especially the top-level regexes at the end) for an in progress "grammar" of the entry structure.
#Abandoune#, _v._ to abandon, resign, X 50. [OFr. _abandouner_.]
Notice this consists of:
- headword
- part of speech
- gloss
- citation
- etymology
<entry>
<form>
<orth>Abandoune</orth>
</form>
<gramGrp>
<pos>v</pos>
</gramGrp>
<def>to abandon, resign</def>
<bibl>X 50</bibl>
<etym>
<lang>OFr</lang>
<mentioned>abandouner</mentioned>
</etym>
</entry>
#Fo#. _See_ Foo.
<entry>
<form>
<orth>Fo</orth>
</form>
<xr>See <ref>Foo</ref></xr>
</entry>
#Bryght(e)#, #Briȝt#, #Bryȝt#, #Briht# (XII), #Bryht# (XV), &c.,
_adj._ and _adv._ bright, II 152, 269, 455, IV _a_ 72, _b_ 6, V 158, XII
_b_ 130, XV _b_ 26, XVII 9, &c. [OE. _berht_, _byrht_.]
<entry>
<form>
<orth>Bryght(e)</orth> <!-- do anything special with (e) ? -->
<orth>Briȝt</orth>
<orth>Bryȝt</orth>
<orth>Briht</orth> <!-- (XII) -->
<orth>Bryht</orth> <!-- (XV) -->
<!-- &c. -->
</form>
<gramGrp>
<pos>adj</pos>
<pos>adv</pos>
</gramGrp>
<def>bright</def>
<bibl>
<!-- still to break out -->
II 152, 269, 455, IV a 72, b 6, V 158, XII b 130, XV b 26, XVII 9, &c.
</bibl>
<etym>
<lang>OE</lang>
<mentioned>berht</mentioned>
<mentioned>byrht</mentioned>
</etym>
</entry>