3b69a19fd83cdcbace0acc21c321fd241f162b44
jnavarr5
  Tue Jun 24 16:37:34 2025 -0700
Creating the Table Browser tutorial markdown, refs #35126

diff --git docs/makefile docs/makefile
index eae56d2d8bd..99f4a068b63 100644
--- docs/makefile
+++ docs/makefile
@@ -1,30 +1,30 @@
 kentSrc = ..
 include ../src/inc/common.mk
 
 rsyncOpts = --whole-file --times --recursive --omit-dir-times --cvs-exclude --exclude='makefile' --exclude='cpAndLinkToResourceFiles.pl' --exclude='style/*'
 
 user:
 	${MAKE} doInstall destDir=${DOCUMENTROOT}-${USER}
 
 alpha:
 	${MAKE} doInstall destDir=${DOCUMENTROOT}
 
 beta:
 	${MAKE} doInstall destDir=${DOCUMENTROOT}-beta
 	rsync ${rsyncOpts} ${DOCUMENTROOT}-beta/docs/ qateam@hgwbeta:${DOCUMENTROOT}/docs/
 
-DOCS = index gb101 gatewayTutorial page_template
+DOCS = index gb101 gatewayTutorial page_template tableBrowserTutorial
 
 doInstall: ${DOCS:%=%_install}
 
 %_install: 
 	${MKDIR} ${destDir}/docs/
 	rm -f  ${destDir}/docs/$*.tmp.html
 	pandoc --ascii -f markdown-smart -t html5 -o ${destDir}/docs/$*.tmp.html $*.md --template staticPage.html -t staticPage.lua --lua-filter GBpandocHTMLrules.lua
 	mv -f  ${destDir}/docs/$*.tmp.html ${destDir}/docs/$*.html
 	chmod a+x ${destDir}/docs/$*.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}/"