From bb91a10a4cc17f73a051ffec41b796290505b35d Mon Sep 17 00:00:00 2001 From: Martin Cech Date: Wed, 21 Sep 2016 13:41:25 -0400 Subject: [PATCH] modify target for tool schema html builder to use pandoc this is @jmchilton committing as @martenson...pssst --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 5049d7f3c9f..200dbb68920 100644 --- a/Makefile +++ b/Makefile @@ -24,11 +24,11 @@ docs: ## generate Sphinx HTML documentation, including API docs $(IN_VENV) $(MAKE) -C doc clean $(IN_VENV) $(MAKE) -C doc html -docs-schema-ready: ## Build Github-flavored Markdown from Galaxy Tool XSD +docs-schema-ready: ## Build Github-flavored Markdown from Galaxy Tool XSD (expects libxml in environment) python $(DOCS_DIR)/parse_gx_xsd.py > $(DOCS_DIR)/schema.md -docs-schema-html: docs-schema-ready ## Convert Galaxy Tool XSD Markdown docs into HTML - markdown $(DOCS_DIR)/schema.md > $(DOCS_DIR)/schema.html +docs-schema-html: docs-schema-ready ## Convert Galaxy Tool XSD Markdown docs into HTML (expects pandoc in environment) + pandoc $(DOCS_DIR)/schema.md -f markdown_github -s -o $(DOCS_DIR)/schema.html open-docs-schema: docs-schema-html ## Open HTML generated from Galaxy Tool XSD. $(OPEN_RESOURCE) $(DOCS_DIR)/schema.html