Inline XML entities

Browsers do not expand external XML entities so they must be inlined.
This commit is contained in:
Kim Alvefur 2019-04-20 00:34:41 +02:00
parent d60b6a03ba
commit 03940e8796
1 changed files with 2 additions and 2 deletions

View File

@ -91,8 +91,8 @@ xep-%.html: $(OUTDIR)/xep-%.html ;
.PHONY: xep-%.pdf
xep-%.pdf: $(OUTDIR)/xep-%.pdf ;
$(all_xep_xmls): $(OUTDIR)/%.xml: %.xml $(OUTDIR)
cp $< $@
$(all_xep_xmls): $(OUTDIR)/%.xml: %.xml $(XMLDEPS)
xmllint --nonet --noent --loaddtd --dropdtd $< --output $@
$(OUTDIR)/xep.xsl: xep.xsl $(OUTDIR)
cp $< $@