aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEdwin Török <[email protected]>2023-12-19 00:43:25 +0000
committerJohn MacFarlane <[email protected]>2023-12-18 17:15:03 -0800
commit95432d3f4e14688daba39ea1d65c8e4811f04ae7 (patch)
tree8999e1fb9df9660bf871dd0c06617d3bd1c3f4db /Makefile
parentdbd1019a9706a6c91a7f83428f3cf0490f104cb4 (diff)
test(docx): add workaround for mc:Ignorable
`make validate-docx-golden-tests` now passes Fixes https://github.com/jgm/pandoc/issues/9269 Signed-off-by: Edwin Török <[email protected]>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5d1be9ef8..2684d4284 100644
--- a/Makefile
+++ b/Makefile
@@ -238,7 +238,8 @@ update-website: ## update website and upload
validate-docx-golden-tests: ## validate docx golden tests against schema
which xmllint || ("xmllint is required" && exit 1)
test -d ./docx-validator || \
- git clone https://github.com/devoidfury/docx-validator
+ (git clone https://github.com/devoidfury/docx-validator && \
+ cd docx-validator && patch -p1 <../wml.xsd.patch)
sh ./tools/validate-docx.sh test/docx/golden/*.docx
.PHONY: validate-docx-golden-tests