commit 10f5ac8b3009c7c27e753a89bb2a42cc21fc25b9 parent 0707f180cbc2112ffd2ad6cb58adc6ed571ca2c5 Author: Wolfgang Corcoran-Mathe <wcm@sigwinch.xyz> Date: Fri, 2 Feb 2024 14:20:24 -0500 Makefile: Allow control of math output method. Diffstat:
M | doc/r7rs-small/Makefile | | | 8 | +++++++- |
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/doc/r7rs-small/Makefile b/doc/r7rs-small/Makefile @@ -1,7 +1,13 @@ .PHONY: all clean MAKEINFO = makeinfo -MAKEINFOFLAGS = --no-split + +# How math should be rendered in HTML output. See "Inserting Math" +# in the Texinfo manual for the available methods. +HTML_MATH = mathjax + +MAKEINFOFLAGS = --no-split\ + --set-customization-variable HTML_MATH=$(HTML_MATH) all: r7rs-small.html r7rs-small.info r7rs-small.pdf