Skip to content

Commit

Permalink
NEW: Abbreviations Page
Browse files Browse the repository at this point in the history
partially addresses #152
  • Loading branch information
dwhieb committed Jul 17, 2024
1 parent 3123588 commit 6331ebc
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 1 deletion.
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ app.get(`/`, handlers.md(`About`))
if (process.env.NODE_ENV !== `production`) {
app.get(`/500-test`, handlers.ServerErrorTest)
}
app.get(`/abbreviations`, handlers.md(`Abbreviations`))
app.get(`/bibliography`, handlers.md(`Bibliography`))
app.get(`/grammar`, handlers.md(`Grammar`))
app.get(`/research`, handlers.md(`Research`))
Expand Down
4 changes: 4 additions & 0 deletions layouts/prose/prose.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
@import 'references-list.css';
@import 'table.css';

.error-message {
text-align: center;
}

.figure {

counter-increment: figures;
Expand Down
37 changes: 37 additions & 0 deletions pages/Abbreviations/Abbreviations.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Abbreviations

Below is a list of abbreviations used in the database.

| Abbreviation | Meaning |
| --------------------- | ----------------------------------------------------- |
| ABSTR | Abstract final |
| AI, AI1-8 | Animate Intransitive final (with number if specified) |
| AI+O | Animate Intransitive plus Object final |
| AnimDep | Noun, animate, dependent |
| CLASS | Classifier, classifying medial |
| CONCR | Concrete final |
| Dep | Noun, dependent [animacy unknown] |
| DOUBLE | Double medial |
| ENVIRON | Environmental medial |
| GENERIC | Generic medial |
| Genl | |
| II | Inanimate Intransitive |
| InanDep | Noun, inanimate, dependent |
| INCORP | Incorporated medial |
| INTRANS | Intransitive |
| N | Noun |
| NA | Noun, animate |
| NG | Not given |
| NI | Noun, inanimate |
| NUM | Numeral root |
| PART | Particle |
| PREV | Preverb final |
| PSI | Pseudo-intransitive |
| RR | Relative root |
| TA | Transitive Animate |
| TI, TI1-3, TI1a, TI1b | Transitive Inanimate (with number if specified) |
| TRANS | Transitive |
| unk. | Unknown |
| V | Verb |

{.table}
2 changes: 1 addition & 1 deletion pages/Error/Error.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# {{ status }}: {{ title }}

{{{ message }}}
{{{ message }}} {.error-message}

0 comments on commit 6331ebc

Please sign in to comment.