Skip to content

Commit

Permalink
deploy: fec7fb0
Browse files Browse the repository at this point in the history
  • Loading branch information
rueter committed Apr 9, 2024
1 parent b2732b6 commit 52f9178
Show file tree
Hide file tree
Showing 37 changed files with 115 additions and 102 deletions.
1 change: 0 additions & 1 deletion Links.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
* `phonetics/`
* [txt2ipa.xfscript](src-fst-phonetics-txt2ipa.xfscript.html) ([src](https://github.com/giellalt/lang-kpv/blob/main/src/fst/phonetics/txt2ipa.xfscript))
* [phonology-old.xfscript](src-fst-phonology-old.xfscript.html) ([src](https://github.com/giellalt/lang-kpv/blob/main/src/fst/phonology-old.xfscript))
* `/`
* `transcriptions/`
* [transcriptor-abbrevs2text.lexc](src-fst-transcriptions-transcriptor-abbrevs2text.lexc.html) ([src](https://github.com/giellalt/lang-kpv/blob/main/src/fst/transcriptions/transcriptor-abbrevs2text.lexc))
* `tools/`
Expand Down
17 changes: 15 additions & 2 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -979,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 @@ -999,24 +1004,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 @@ -87,7 +87,6 @@ Below is an autogenerated list of documentation pages built from structured comm
* `phonetics/`
* [txt2ipa.xfscript](src-fst-phonetics-txt2ipa.xfscript.html) ([src](https://github.com/giellalt/lang-kpv/blob/main/src/fst/phonetics/txt2ipa.xfscript))
* [phonology-old.xfscript](src-fst-phonology-old.xfscript.html) ([src](https://github.com/giellalt/lang-kpv/blob/main/src/fst/phonology-old.xfscript))
* `/`
* `transcriptions/`
* [transcriptor-abbrevs2text.lexc](src-fst-transcriptions-transcriptor-abbrevs2text.lexc.html) ([src](https://github.com/giellalt/lang-kpv/blob/main/src/fst/transcriptions/transcriptor-abbrevs2text.lexc))
* `tools/`
Expand Down
Loading

0 comments on commit 52f9178

Please sign in to comment.