From 65f93966f8e5b8abe8055bf0cec1b12aa3300524 Mon Sep 17 00:00:00 2001 From: Hassan Kibirige Date: Wed, 28 Feb 2024 15:43:45 +0300 Subject: [PATCH] Install extensions in doc/Makefile --- Makefile | 2 -- doc/Makefile | 4 ++++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ba3457f4d..5e39cb3ea 100644 --- a/Makefile +++ b/Makefile @@ -92,8 +92,6 @@ install: clean doc-deps: pip install -e ".[doc]" pip install -r requirements/doc.txt - quarto add --no-prompt has2k1/issuey - quarto add --no-prompt has2k1/interlinks develop: clean-cache pip install -e ".[all]" diff --git a/doc/Makefile b/doc/Makefile index ac497f2be..e14d66f76 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -46,6 +46,10 @@ download_qrenderer_style: ## Download qrenderer stylesheet wget $(QRENDERER_STYLE_URL) -O $(QRENDERER_STYLE_FILE); \ fi +extensions: ## Install quarto/pandoc extensions + quarto add --no-prompt has2k1/issuey + quarto add --no-prompt has2k1/interlinks + deps: download_qrenderer_style ## Install build dependencies cd ..; make doc-deps