Skip to content

Commit

Permalink
deploy: c826554
Browse files Browse the repository at this point in the history
  • Loading branch information
flammie committed Apr 12, 2024
1 parent 42584d6 commit fc07f6c
Show file tree
Hide file tree
Showing 21 changed files with 91 additions and 58 deletions.
8 changes: 7 additions & 1 deletion Links.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,16 @@
* `fst/`
* `morphology/`
* `affixes/`
* [symbols.lexc](src-fst-morphology-affixes-symbols.lexc.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/affixes/symbols.lexc))
* [verbs.lexc](src-fst-morphology-affixes-verbs.lexc.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/affixes/verbs.lexc))
* [clitics.lexc](src-fst-morphology-clitics.lexc.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/clitics.lexc))
* [root.lexc](src-fst-morphology-root.lexc.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/root.lexc))
* `stems/`
* [abbreviations.lexc](src-fst-morphology-stems-abbreviations.lexc.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/stems/abbreviations.lexc))
* [adverbs.lexc](src-fst-morphology-stems-adverbs.lexc.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/stems/adverbs.lexc))
* [determiners.lexc](src-fst-morphology-stems-determiners.lexc.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/stems/determiners.lexc))
* [nouns.lexc](src-fst-morphology-stems-nouns.lexc.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/stems/nouns.lexc))
* [verbs.lexc](src-fst-morphology-stems-verbs.lexc.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/stems/verbs.lexc))
* `phonetics/`
* [txt2ipa.xfscript](src-fst-phonetics-txt2ipa.xfscript.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/phonetics/txt2ipa.xfscript))
* `transcriptions/`
Expand All @@ -15,7 +22,6 @@
* `tools/`
* `grammarcheckers/`
* [grammarchecker.cg3](tools-grammarcheckers-grammarchecker.cg3.html) ([src](https://github.com/giellalt/lang-ipk/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-ipk/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-ipk/blob/main/tools/tokenisers/tokeniser-gramcheck-gt-desc.pmscript))
Expand Down
27 changes: 24 additions & 3 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 @@ -940,7 +941,7 @@ regenerate-markdown: generate-markdown

# Generate endpoint json file for shield.io lemma count badge.
# Only to be stored in the gh-pages branch, ignored in main.
$(srcdir)/lemmacount.json: $(top_srcdir)/src/fst/morphology/stems/*.lexc
$(srcdir)/lemmacount.json:
$(AM_V_GEN)$(GTCORE)/scripts/make-lemmacount.json.sh $(abs_top_srcdir) > $@

# Generate a maturity.json file as endpoint for the maturity badge.
Expand Down Expand Up @@ -978,9 +979,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 @@ -994,27 +1000,42 @@ $(LINKS):
d2=`echo "$$d" | cut -d '/' -f 2` ;\
d3=`echo "$$d" | cut -d '/' -f 3` ;\
d4=`echo "$$d" | cut -d '/' -f 4` ;\
d5=`echo "$$d" | cut -d '/' -f 5` ;\
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))" ;\
elif test "x$$d5" != "x$$oldd5" ; then \
echo " * \`$$d5/\`" ;\
oldd5=$$d5 ;\
fi ; \
done > $@

Expand Down
8 changes: 7 additions & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,16 @@ Below is an autogenerated list of documentation pages built from structured comm
* `fst/`
* `morphology/`
* `affixes/`
* [symbols.lexc](src-fst-morphology-affixes-symbols.lexc.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/affixes/symbols.lexc))
* [verbs.lexc](src-fst-morphology-affixes-verbs.lexc.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/affixes/verbs.lexc))
* [clitics.lexc](src-fst-morphology-clitics.lexc.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/clitics.lexc))
* [root.lexc](src-fst-morphology-root.lexc.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/root.lexc))
* `stems/`
* [abbreviations.lexc](src-fst-morphology-stems-abbreviations.lexc.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/stems/abbreviations.lexc))
* [adverbs.lexc](src-fst-morphology-stems-adverbs.lexc.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/stems/adverbs.lexc))
* [determiners.lexc](src-fst-morphology-stems-determiners.lexc.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/stems/determiners.lexc))
* [nouns.lexc](src-fst-morphology-stems-nouns.lexc.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/stems/nouns.lexc))
* [verbs.lexc](src-fst-morphology-stems-verbs.lexc.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/stems/verbs.lexc))
* `phonetics/`
* [txt2ipa.xfscript](src-fst-phonetics-txt2ipa.xfscript.html) ([src](https://github.com/giellalt/lang-ipk/blob/main/src/fst/phonetics/txt2ipa.xfscript))
* `transcriptions/`
Expand All @@ -35,7 +42,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-ipk/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-ipk/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-ipk/blob/main/tools/tokenisers/tokeniser-gramcheck-gt-desc.pmscript))
Expand Down
55 changes: 49 additions & 6 deletions ipk.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Inupiaq description
# Inupiaq language model documentation

All documents in one file
All doc-comment documentation in one large file.

---

# src-cg3-functions.cg3.md



Expand Down Expand Up @@ -170,7 +174,14 @@ These were the set types.
## HNOUN MAPPING

* * *

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

---

# src-fst-morphology-affixes-symbols.lexc.md


# Symbol affixes

* * *
Expand All @@ -179,6 +190,8 @@ These were the set types.

---

# src-fst-morphology-affixes-verbs.lexc.md



* * *
Expand All @@ -187,6 +200,8 @@ These were the set types.

---

# src-fst-morphology-clitics.lexc.md



The philosophy behind this is that we need only one
Expand All @@ -201,6 +216,8 @@ and leaves only iv+ív and tv+tv

---

# src-fst-morphology-root.lexc.md


# Multichar\_Symbols and *Root* lexicon for Iñupiaq

Expand Down Expand Up @@ -330,6 +347,8 @@ tup etc. whereas specials are tagged with the continuation lexicon

---

# src-fst-morphology-stems-abbreviations.lexc.md


# Abbreviations

Expand All @@ -343,6 +362,8 @@ LEXICON abbr goes to #.

---

# src-fst-morphology-stems-adverbs.lexc.md


# Adverb stems

Expand All @@ -356,6 +377,8 @@ LEXICON Adverbs gives the stems, just now some 30 of them.

---

# src-fst-morphology-stems-determiners.lexc.md


# Determiners

Expand All @@ -373,6 +396,8 @@ LEXICON Determiners here comes the list

---

# src-fst-morphology-stems-nouns.lexc.md


# Nouminal roots

Expand Down Expand Up @@ -408,6 +433,8 @@ Added from dictionary

---

# src-fst-morphology-stems-verbs.lexc.md


# Verb lexicon

Expand Down Expand Up @@ -2090,6 +2117,8 @@ This was a list of doublet verbs.

---

# src-fst-phonetics-txt2ipa.xfscript.md



retroflex plosive, voiceless t` ʈ 0288, 648 (` = ASCII 096)
Expand Down Expand Up @@ -2257,6 +2286,8 @@ retracted tongue root _q

---

# src-fst-transcriptions-transcriptor-abbrevs2text.lexc.md



We describe here how abbreviations are in Inupiaq are read out, e.g.
Expand All @@ -2277,6 +2308,8 @@ For example:

---

# src-fst-transcriptions-transcriptor-numbers-digit2text.lexc.md



% komma% :, Root ;
Expand All @@ -2291,6 +2324,8 @@ For example:

---

# tools-grammarcheckers-grammarchecker.cg3.md


[ L A N G U A G E ] G R A M M A R C H E C K E R

Expand Down Expand Up @@ -2588,7 +2623,14 @@ expression **WORD - premodifiers**.
### Grammarchecker sets

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

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

---

# tools-tokenisers-tokeniser-disamb-gt-desc.pmscript.md

# Tokeniser for ipk

Usage:
```
Expand Down Expand Up @@ -2651,6 +2693,8 @@ Finally we mark as a token any sequence making up a:

---

# tools-tokenisers-tokeniser-gramcheck-gt-desc.pmscript.md

# Grammar checker tokenisation for ipk

Requires a recent version of HFST (3.10.0 / git revision>=3aecdbc)
Expand Down Expand Up @@ -2714,6 +2758,8 @@ Finally we mark as a token any sequence making up a:

---

# tools-tokenisers-tokeniser-tts-cggt-desc.pmscript.md

# TTS tokenisation for smj

Requires a recent version of HFST (3.10.0 / git revision>=3aecdbc)
Expand Down Expand Up @@ -2775,6 +2821,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-ipk/blob/main/tools/tokenisers/tokeniser-tts-cggt-desc.pmscript)</small>

---

3 changes: 2 additions & 1 deletion src-cg3-functions.cg3.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,5 @@ These were the set types.
## HNOUN MAPPING

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

<small>This (part of) documentation was generated from [src/cg3/functions.cg3](https://github.com/giellalt/lang-ipk/blob/main/src/cg3/functions.cg3)</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-ipk/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 @@ -3,6 +3,3 @@
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/affixes/verbs.lexc](https://github.com/giellalt/lang-ipk/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 @@ -9,6 +9,3 @@ and leaves only iv+ív and tv+tv
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/clitics.lexc](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/clitics.lexc)</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 @@ -124,6 +124,3 @@ tup etc. whereas specials are tagged with the continuation lexicon
* * *

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

---

3 changes: 0 additions & 3 deletions src-fst-morphology-stems-abbreviations.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,3 @@ LEXICON abbr goes to #.
* * *

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

---

3 changes: 0 additions & 3 deletions src-fst-morphology-stems-adverbs.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,3 @@ LEXICON Adverbs gives the stems, just now some 30 of them.
* * *

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

---

3 changes: 0 additions & 3 deletions src-fst-morphology-stems-determiners.lexc.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,3 @@ LEXICON Determiners here comes the list
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/stems/determiners.lexc](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/stems/determiners.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 @@ -30,6 +30,3 @@ Added from dictionary
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/stems/nouns.lexc](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/stems/nouns.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 @@ -1677,6 +1677,3 @@ This was a list of doublet verbs.
* * *

<small>This (part of) documentation was generated from [src/fst/morphology/stems/verbs.lexc](https://github.com/giellalt/lang-ipk/blob/main/src/fst/morphology/stems/verbs.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-ipk/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-ipk/blob/main/src/fst/transcriptions/transcriptor-abbrevs2text.lexc)</small>

---

Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,3 @@
* * *

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

---

Loading

0 comments on commit fc07f6c

Please sign in to comment.