Skip to content

Commit

Permalink
deploy: a8689b5
Browse files Browse the repository at this point in the history
  • Loading branch information
flammie committed Apr 12, 2024
1 parent 6b656aa commit 780f3f4
Show file tree
Hide file tree
Showing 38 changed files with 118 additions and 105 deletions.
1 change: 0 additions & 1 deletion Links.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
* `tools/`
* `grammarcheckers/`
* [grammarchecker.cg3](tools-grammarcheckers-grammarchecker.cg3.html) ([src](https://github.com/giellalt/lang-vro/blob/main/tools/grammarcheckers/grammarchecker.cg3))
* `/`
* `tokenisers/`
* [tokeniser-disamb-gt-desc.pmscript](tools-tokenisers-tokeniser-disamb-gt-desc.pmscript.html) ([src](https://github.com/giellalt/lang-vro/blob/main/tools/tokenisers/tokeniser-disamb-gt-desc.pmscript))
* [tokeniser-gramcheck-gt-desc.pmscript](tools-tokenisers-tokeniser-gramcheck-gt-desc.pmscript.html) ([src](https://github.com/giellalt/lang-vro/blob/main/tools/tokenisers/tokeniser-gramcheck-gt-desc.pmscript))
Expand Down
18 changes: 16 additions & 2 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@ GLANGUAGE = @GLANGUAGE@
GRAMCHECKVERSION = @GRAMCHECKVERSION@
GTCORE = @GTCORE@
GTCORESH = @GTCORESH@
GTGRAMTOOL = @GTGRAMTOOL@
GTLANG = @GTLANG@
GTLANG2 = @GTLANG2@
GTLANGUAGE = @GTLANGUAGE@
Expand Down Expand Up @@ -979,9 +980,14 @@ $(foreach f,$(DOCSRC_XEROX),$(eval $(call make_md_files,$(f))))
$(foreach f,$(DOCSRC_CG3),$(eval $(call make_md_files_cg3,$(f))))

# Collect all target files into one big MD file:
# Remove the VPATH prefix to create the header for each file/chapter:
$(ALLINONE_MD_PAGE): $(VPATH_MDFILES)
$(AM_V_GEN)printf "# $(GLANGUAGE) description \n\nAll documents in one file\n\n" \
| cat - $(VPATH_MDFILES) > $@
$(AM_V_GEN)printf "# $(GLANGUAGE) language model documentation\n\nAll doc-comment documentation in one large file.\n" > $@
for f in $(VPATH_MDFILES); do \
header=$${f#"$(top_srcdir)/docs/"};\
printf "\n---\n\n# $$header \n\n" >> $@ ;\
cat $$f >> $@ ;\
done

$(LINKS):
$(AM_V_GEN)for doc2md in $(DOCSRC_MDFILES) ; do \
Expand All @@ -999,24 +1005,32 @@ $(LINKS):
if test "x$$d1" != "x$$oldd1" ; then \
echo "* \`$$d1/\`" ;\
oldd1=$$d1 ;\
oldd2="";\
oldd3="";\
oldd4="";\
fi ; \
if test "x$$d2" = x ; then \
echo " * [$$docname]($$html) ([src]($(REPOURL)/$$doc))" ;\
elif test "x$$d2" != "x$$oldd2" ; then \
echo " * \`$$d2/\`" ;\
oldd2=$$d2 ;\
oldd3="";\
oldd4="";\
oldd5="";\
fi ; \
if test "x$$d3" = x -a "x$$d2" != x; then \
echo " * [$$docname]($$html) ([src]($(REPOURL)/$$doc))" ;\
elif test "x$$d3" != "x$$oldd3" ; then \
echo " * \`$$d3/\`" ;\
oldd3=$$d3 ;\
oldd4="";\
fi ; \
if test "x$$d4" = x -a "x$$d3" != x ; then \
echo " * [$$docname]($$html) ([src]($(REPOURL)/$$doc))" ;\
elif test "x$$d4" != "x$$oldd4" ; then \
echo " * \`$$d4/\`" ;\
oldd4=$$d4 ;\
oldd5="";\
fi ; \
if test "x$$d5" = x -a "x$$d4" != x ; then \
echo " * [$$docname]($$html) ([src]($(REPOURL)/$$doc))" ;\
Expand Down
1 change: 0 additions & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ Below is an autogenerated list of documentation pages built from structured comm
* `tools/`
* `grammarcheckers/`
* [grammarchecker.cg3](tools-grammarcheckers-grammarchecker.cg3.html) ([src](https://github.com/giellalt/lang-vro/blob/main/tools/grammarcheckers/grammarchecker.cg3))
* `/`
* `tokenisers/`
* [tokeniser-disamb-gt-desc.pmscript](tools-tokenisers-tokeniser-disamb-gt-desc.pmscript.html) ([src](https://github.com/giellalt/lang-vro/blob/main/tools/tokenisers/tokeniser-disamb-gt-desc.pmscript))
* [tokeniser-gramcheck-gt-desc.pmscript](tools-tokenisers-tokeniser-gramcheck-gt-desc.pmscript.html) ([src](https://github.com/giellalt/lang-vro/blob/main/tools/tokenisers/tokeniser-gramcheck-gt-desc.pmscript))
Expand Down
3 changes: 2 additions & 1 deletion src-cg3-dependency.cg3.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,4 +149,5 @@ Correction rules
**lgRemove** removes the language tags <sma>, <sme>, etc, before proceeding to the dep file.

* * *
<small>This (part of) documentation was generated from [src/cg3/dependency.cg3](https://github.com/giellalt/lang-vro/blob/main/src/cg3/dependency.cg3)</small>

<small>This (part of) documentation was generated from [src/cg3/dependency.cg3](https://github.com/giellalt/lang-vro/blob/main/src/cg3/dependency.cg3)</small>
3 changes: 2 additions & 1 deletion src-cg3-disambiguator.cg3.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,4 +244,5 @@ Relative pronouns
* **errorth** removes Err/Orth if there is an analysis without Err/Orth with the same lemma

* * *
<small>This (part of) documentation was generated from [src/cg3/disambiguator.cg3](https://github.com/giellalt/lang-vro/blob/main/src/cg3/disambiguator.cg3)</small>

<small>This (part of) documentation was generated from [src/cg3/disambiguator.cg3](https://github.com/giellalt/lang-vro/blob/main/src/cg3/disambiguator.cg3)</small>
3 changes: 2 additions & 1 deletion src-cg3-functions.cg3.md
Original file line number Diff line number Diff line change
Expand Up @@ -467,4 +467,5 @@ These were the set types.
The analysis give double analysis because of optional semtags. We go for the one with semtag.

* * *
<small>This (part of) documentation was generated from [src/cg3/functions.cg3](https://github.com/giellalt/lang-vro/blob/main/src/cg3/functions.cg3)</small>

<small>This (part of) documentation was generated from [src/cg3/functions.cg3](https://github.com/giellalt/lang-vro/blob/main/src/cg3/functions.cg3)</small>
3 changes: 0 additions & 3 deletions src-fst-morphology-affixes-adjectives.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,3 @@ gradation: no
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/affixes/adjectives.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/affixes/adjectives.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-affixes-adverbs.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,3 @@ What is this 2017-03-27
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/affixes/adverbs.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/affixes/adverbs.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-affixes-nouns.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -2086,6 +2086,3 @@ digits
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/affixes/nouns.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/affixes/nouns.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-affixes-numerals.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,3 @@ by .:, and with reduced case forms. The Err/Orth tag is added in the calling lex
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/affixes/numerals.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/affixes/numerals.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-affixes-postpositions.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,3 @@ The Võro language postpositions ...
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/affixes/postpositions.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/affixes/postpositions.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-affixes-pronouns.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,3 @@ LEXICON PERS_PL3 timä:
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/affixes/pronouns.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/affixes/pronouns.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-affixes-propernouns.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,3 @@ LEXICON PROP_46HAIN hain:hain
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/affixes/propernouns.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/affixes/propernouns.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-affixes-quantifiers.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,3 @@ The Võro language quantifiers inflect in cases.
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/affixes/quantifiers.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/affixes/quantifiers.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-affixes-symbols.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,3 @@
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/affixes/symbols.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/affixes/symbols.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-affixes-verbs.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -847,6 +847,3 @@ Retain consonant and stem vowel
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/affixes/verbs.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/affixes/verbs.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-clitics.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,3 @@ Clitics in Võro
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/clitics.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/clitics.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-phonology.twolc.md
Original file line number Diff line number Diff line change
Expand Up @@ -1193,6 +1193,3 @@ naŕma
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/phonology.twolc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/phonology.twolc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-root.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,3 @@ less complex word classes
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/root.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/root.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-stems-acronyms.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,3 @@ Veps acronyms ...
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/stems/acronyms.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/stems/acronyms.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-stems-adjectives_newwords.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,3 @@ ADD NOUNS BELOW
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/stems/adjectives_newwords.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/stems/adjectives_newwords.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-stems-adpositions_newwords.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,3 @@ ADD NOUNS BELOW
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/stems/adpositions_newwords.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/stems/adpositions_newwords.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-stems-adverbs_newwords.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,3 @@ CHECKME
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/stems/adverbs_newwords.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/stems/adverbs_newwords.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-stems-determiners_newwords.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,3 @@ ADD DETERMINERS BELOW
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/stems/determiners_newwords.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/stems/determiners_newwords.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-stems-exceptions.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,3 @@ tundma **to feel/tuntea**
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/stems/exceptions.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/stems/exceptions.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-stems-interjections_newwords.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,3 @@ ADD INTERJECTIONS BELOW
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/stems/interjections_newwords.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/stems/interjections_newwords.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-stems-nouns.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,3 @@ hanśa+N:hanśa N_1HANS1A "" ;
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/stems/nouns.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/stems/nouns.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-stems-nouns_newwords.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,3 @@ Three-syllable words
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/stems/nouns_newwords.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/stems/nouns_newwords.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-stems-verbs.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,3 @@ petmä+V:pettä
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/stems/verbs.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/stems/verbs.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-morphology-stems-verbs_newwords.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,3 @@ petmä+V:pettä
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/stems/verbs_newwords.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/morphology/stems/verbs_newwords.lexc)</small>

---

3 changes: 0 additions & 3 deletions src-fst-phonetics-txt2ipa.xfscript.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,3 @@ retracted tongue root _q
* * *

<small>This (part of) documentation was generated from [src/fst/phonetics/txt2ipa.xfscript](https://github.com/giellalt/lang-vro/blob/main/src/fst/phonetics/txt2ipa.xfscript)</small>

---

3 changes: 0 additions & 3 deletions src-fst-transcriptions-transcriptor-abbrevs2text.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,3 @@ For example:
* * *

<small>This (part of) documentation was generated from [src/fst/transcriptions/transcriptor-abbrevs2text.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/transcriptions/transcriptor-abbrevs2text.lexc)</small>

---

Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,3 @@ Ordinal numerals begin
* * *

<small>This (part of) documentation was generated from [src/fst/transcriptions/transcriptor-numbers-digit2text.lexc](https://github.com/giellalt/lang-vro/blob/main/src/fst/transcriptions/transcriptor-numbers-digit2text.lexc)</small>

---

3 changes: 2 additions & 1 deletion tools-grammarcheckers-grammarchecker.cg3.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,4 +295,5 @@ expression **WORD - premodifiers**.
### Grammarchecker sets

* * *
<small>This (part of) documentation was generated from [tools/grammarcheckers/grammarchecker.cg3](https://github.com/giellalt/lang-vro/blob/main/tools/grammarcheckers/grammarchecker.cg3)</small>

<small>This (part of) documentation was generated from [tools/grammarcheckers/grammarchecker.cg3](https://github.com/giellalt/lang-vro/blob/main/tools/grammarcheckers/grammarchecker.cg3)</small>
3 changes: 0 additions & 3 deletions tools-tokenisers-tokeniser-disamb-gt-desc.pmscript.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,3 @@ Finally we mark as a token any sequence making up a:
* * *

<small>This (part of) documentation was generated from [tools/tokenisers/tokeniser-disamb-gt-desc.pmscript](https://github.com/giellalt/lang-vro/blob/main/tools/tokenisers/tokeniser-disamb-gt-desc.pmscript)</small>

---

3 changes: 0 additions & 3 deletions tools-tokenisers-tokeniser-gramcheck-gt-desc.pmscript.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,3 @@ Finally we mark as a token any sequence making up a:
* * *

<small>This (part of) documentation was generated from [tools/tokenisers/tokeniser-gramcheck-gt-desc.pmscript](https://github.com/giellalt/lang-vro/blob/main/tools/tokenisers/tokeniser-gramcheck-gt-desc.pmscript)</small>

---

3 changes: 0 additions & 3 deletions tools-tokenisers-tokeniser-tts-cggt-desc.pmscript.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,3 @@ Needs hfst-tokenise to output things differently depending on the tag they get
* * *

<small>This (part of) documentation was generated from [tools/tokenisers/tokeniser-tts-cggt-desc.pmscript](https://github.com/giellalt/lang-vro/blob/main/tools/tokenisers/tokeniser-tts-cggt-desc.pmscript)</small>

---

Loading

0 comments on commit 780f3f4

Please sign in to comment.