diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-06-09 13:43:14 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-06-09 16:24:12 -0400 |
commit | b6dc9d33488899b73c78675f5357afabf8f8fd29 (patch) | |
tree | 8a235e21dd3bffb6d7af6a3ab0b7cb7b67d2eac6 /doc/web.texi | |
parent | d28d19b582347bffebbf0ca905297e744842a5f2 (diff) | |
download | geiser-b6dc9d33488899b73c78675f5357afabf8f8fd29.tar.gz geiser-b6dc9d33488899b73c78675f5357afabf8f8fd29.tar.bz2 |
doc: Replace texi2html with makeinfo to generate HTML doc.
One benefit of using 'makeinfo' instead of 'texi2html' is that the
HTML file hierarchy layout produced by 'makeinfo' matches the layout
expected for cross-reference URLs.
For example, a cross-reference defined via:
@pxref{Introduction,,, geiser, Geiser User Manual}
would produce the URL: /Introduction.html#Introduction, while
Texi2html produces /geiser/geiser_1.html#Introduction instead,
breaking for example a cross-reference in the GNU Guix Reference
Manual (see: https://issues.guix.gnu.org/55290).
* doc/makefile (web): Replace texi2html with makeinfo.
* doc/site.conf: Delete file.
* doc/web.texi: Likewise.
Diffstat (limited to 'doc/web.texi')
-rw-r--r-- | doc/web.texi | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/doc/web.texi b/doc/web.texi deleted file mode 100644 index 6761db5..0000000 --- a/doc/web.texi +++ /dev/null @@ -1,43 +0,0 @@ -@settitle Geiser - -@include macros.texi - -@contents - -@node Top, Introduction, (dir), (dir) - -@include top.texi - -@menu -* Introduction:: -* Installation:: -* The REPL:: -* Between the parens:: -* Cheat sheet:: -* No hacker is an island:: -* Index:: -@end menu - -@html -<br/> -<div class="navigation" align="right"> -<a class="navlink" href="https://gitlab.com/groups/emacs-geiser/-/issues">Bugs</a> -<a class="navlink" href="https://gitlab.com/emacs-geiser">Source</a> -<a class="navlink" href="http://lists.nongnu.org/mailman/listinfo/geiser-users">Mailing list</a> -</div> -@end html - -@include intro.texi -@include install.texi -@include repl.texi -@include parens.texi -@include cheat.texi -@include thanks.texi -@include index.texi - -@bye - -@c Local Variables: -@c mode: texinfo -@c TeX-master: t -@c End: |