532489da40462ffa8bc5745555fbd837fb572aeb
gperez2
  Tue Apr 29 17:40:46 2025 -0700
Adding the gateway tutorial markdown and makefile, refs #34938

diff --git docs/makefile docs/makefile
index 5f9ef166052..889398f1dab 100644
--- docs/makefile
+++ docs/makefile
@@ -1,22 +1,24 @@
 kentSrc = ..
 include ../src/inc/common.mk
 
 GIT = git
 GITUP = ${GIT} pull
 
 user:
 	${MAKE} doInstall destDir=${DOCUMENTROOT}-${USER}
 
 doInstall:
 	mkdir -p ${destDir}/docs/
 	pandoc --ascii -f markdown-smart -t html5 -o ${destDir}/docs/index.html index.md --template staticPage.html -t staticPage.lua --lua-filter GBpandocHTMLrules.lua
 	pandoc --ascii -f markdown-smart -t html5 -o ${destDir}/docs/gb101.html gb101.md --template staticPage.html -t staticPage.lua --lua-filter GBpandocHTMLrules.lua
 	pandoc --ascii -f markdown-smart -t html5 -o ${destDir}/docs/page_template.html page_template.md --template staticPage.html -t staticPage.lua --lua-filter GBpandocHTMLrules.lua
+	pandoc --ascii -f markdown-smart -t html5 -o ${destDir}/docs/gatewayTutorial.html gatewayTutorial.md --template staticPage.html -t staticPage.lua --lua-filter GBpandocHTMLrules.lua
 	chmod a+x ${destDir}/docs/index.html
 	chmod a+x ${destDir}/docs/gb101.html
 	chmod a+x ${destDir}/docs/page_template.html
+	chmod a+x ${destDir}/docs/gatewayTutorial.html
 
 testPandoc:
 	@printf "Test the following path and commands look ok\n"
 	@printf "pandoc path: %s\n" "`which pandoc`"
 	@printf "pandoc --ascii -f markdown-smart -t html5 index.md --template staticPage.html -t staticPage.lua\n" "${DOCUMENTROOT}/"