From 3fdb1fba606bad575b22585c0e0d71da73062465 Mon Sep 17 00:00:00 2001 From: burnettk Date: Fri, 15 Sep 2023 20:29:02 -0400 Subject: [PATCH] fix heading and install markdownlint if needed --- docs/Building_Diagrams/Extensions.md | 2 +- docs/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Building_Diagrams/Extensions.md b/docs/Building_Diagrams/Extensions.md index dfd65306..d6142e90 100644 --- a/docs/Building_Diagrams/Extensions.md +++ b/docs/Building_Diagrams/Extensions.md @@ -83,7 +83,7 @@ An entirely new feature application feature with frontend and backend components ![Extension](images/Agregate_metadata.png) -# Use Cases +## Use Cases If your organization has specific needs not catered to by the standard SpiffArena features, you can use extensions to add those features. diff --git a/docs/Makefile b/docs/Makefile index d9148e85..91dcdd65 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -13,7 +13,7 @@ help: @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) && echo " \033[0;34mlint\033[0m runs markdownlint on all markdown files (this was added to the Makefile manually. pardon formatting)" lint: - markdownlint **/*.md + (markdownlint -V > /dev/null || npm install -g markdownlint-cli) && markdownlint **/*.md .PHONY: help Makefile