Skip to content

Commit aa35dad

Browse files
committed
Merge branch 'ae/doc-reproducible-html'
Newer versions of xsltproc can assign IDs in HTML documents it generates in a consistent manner. Use the feature to help format HTML version of the user manual reproducibly. * ae/doc-reproducible-html: doc: make HTML manual reproducible
2 parents c9f1f44 + 3569e11 commit aa35dad

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Documentation/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,10 @@ SubmittingPatches.txt: SubmittingPatches
380380
$(QUIET_GEN) cp $< $@
381381

382382
XSLT = docbook.xsl
383-
XSLTOPTS = --xinclude --stringparam html.stylesheet docbook-xsl.css
383+
XSLTOPTS =
384+
XSLTOPTS += --xinclude
385+
XSLTOPTS += --stringparam html.stylesheet docbook-xsl.css
386+
XSLTOPTS += --param generate.consistent.ids 1
384387

385388
user-manual.html: user-manual.xml $(XSLT)
386389
$(QUIET_XSLTPROC)$(RM) $@+ $@ && \

0 commit comments

Comments
 (0)