Skip to content

Commit

Permalink
deploy: 8b981ce
Browse files Browse the repository at this point in the history
  • Loading branch information
flammie committed Mar 27, 2024
1 parent 9982cda commit 168cca7
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 1 deletion.
18 changes: 18 additions & 0 deletions Links.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,28 @@
* `fst/`
* `morphology/`
* `affixes/`
* [adjectives.lexc](src-fst-morphology-affixes-adjectives.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/affixes/adjectives.lexc))
* [nouns.lexc](src-fst-morphology-affixes-nouns.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/affixes/nouns.lexc))
* [propernouns.lexc](src-fst-morphology-affixes-propernouns.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/affixes/propernouns.lexc))
* [symbols.lexc](src-fst-morphology-affixes-symbols.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/affixes/symbols.lexc))
* [verbs.lexc](src-fst-morphology-affixes-verbs.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/affixes/verbs.lexc))
* [clitics.lexc](src-fst-morphology-clitics.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/clitics.lexc))
* [phonology.twolc](src-fst-morphology-phonology.twolc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/phonology.twolc))
* [root.lexc](src-fst-morphology-root.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/root.lexc))
* `stems/`
* [adjectives.lexc](src-fst-morphology-stems-adjectives.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/adjectives.lexc))
* [adverbs.lexc](src-fst-morphology-stems-adverbs.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/adverbs.lexc))
* [bxr-propernouns.lexc](src-fst-morphology-stems-bxr-propernouns.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/bxr-propernouns.lexc))
* [conjunctions.lexc](src-fst-morphology-stems-conjunctions.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/conjunctions.lexc))
* [interjections.lexc](src-fst-morphology-stems-interjections.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/interjections.lexc))
* [nouns.lexc](src-fst-morphology-stems-nouns.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/nouns.lexc))
* [numerals.lexc](src-fst-morphology-stems-numerals.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/numerals.lexc))
* [particles.lexc](src-fst-morphology-stems-particles.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/particles.lexc))
* [postpositions.lexc](src-fst-morphology-stems-postpositions.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/postpositions.lexc))
* [pronouns.lexc](src-fst-morphology-stems-pronouns.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/pronouns.lexc))
* [propernouns.lexc](src-fst-morphology-stems-propernouns.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/propernouns.lexc))
* [subjunctions.lexc](src-fst-morphology-stems-subjunctions.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/subjunctions.lexc))
* [verbs.lexc](src-fst-morphology-stems-verbs.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/verbs.lexc))
* `transcriptions/`
* [transcriptor-abbrevs2text.lexc](src-fst-transcriptions-transcriptor-abbrevs2text.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/transcriptions/transcriptor-abbrevs2text.lexc))
* `tools/`
Expand Down
9 changes: 8 additions & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -941,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 @@ -995,6 +995,7 @@ $(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 ;\
Expand All @@ -1017,6 +1018,12 @@ $(LINKS):
echo " * \`$$d4/\`" ;\
oldd4=$$d4 ;\
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 > $@

empty.md:
Expand Down
18 changes: 18 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,28 @@ Below is an autogenerated list of documentation pages built from structured comm
* `fst/`
* `morphology/`
* `affixes/`
* [adjectives.lexc](src-fst-morphology-affixes-adjectives.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/affixes/adjectives.lexc))
* [nouns.lexc](src-fst-morphology-affixes-nouns.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/affixes/nouns.lexc))
* [propernouns.lexc](src-fst-morphology-affixes-propernouns.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/affixes/propernouns.lexc))
* [symbols.lexc](src-fst-morphology-affixes-symbols.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/affixes/symbols.lexc))
* [verbs.lexc](src-fst-morphology-affixes-verbs.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/affixes/verbs.lexc))
* [clitics.lexc](src-fst-morphology-clitics.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/clitics.lexc))
* [phonology.twolc](src-fst-morphology-phonology.twolc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/phonology.twolc))
* [root.lexc](src-fst-morphology-root.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/root.lexc))
* `stems/`
* [adjectives.lexc](src-fst-morphology-stems-adjectives.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/adjectives.lexc))
* [adverbs.lexc](src-fst-morphology-stems-adverbs.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/adverbs.lexc))
* [bxr-propernouns.lexc](src-fst-morphology-stems-bxr-propernouns.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/bxr-propernouns.lexc))
* [conjunctions.lexc](src-fst-morphology-stems-conjunctions.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/conjunctions.lexc))
* [interjections.lexc](src-fst-morphology-stems-interjections.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/interjections.lexc))
* [nouns.lexc](src-fst-morphology-stems-nouns.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/nouns.lexc))
* [numerals.lexc](src-fst-morphology-stems-numerals.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/numerals.lexc))
* [particles.lexc](src-fst-morphology-stems-particles.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/particles.lexc))
* [postpositions.lexc](src-fst-morphology-stems-postpositions.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/postpositions.lexc))
* [pronouns.lexc](src-fst-morphology-stems-pronouns.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/pronouns.lexc))
* [propernouns.lexc](src-fst-morphology-stems-propernouns.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/propernouns.lexc))
* [subjunctions.lexc](src-fst-morphology-stems-subjunctions.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/subjunctions.lexc))
* [verbs.lexc](src-fst-morphology-stems-verbs.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/morphology/stems/verbs.lexc))
* `transcriptions/`
* [transcriptor-abbrevs2text.lexc](src-fst-transcriptions-transcriptor-abbrevs2text.lexc.html) ([src](https://github.com/giellalt/lang-bxr/blob/main/src/fst/transcriptions/transcriptor-abbrevs2text.lexc))
* `tools/`
Expand Down

0 comments on commit 168cca7

Please sign in to comment.