From f017e100dbff04641a4c8aea2b5621efcd4129db Mon Sep 17 00:00:00 2001 From: John Sichi Date: Wed, 30 May 2018 23:52:44 -0700 Subject: [PATCH] Exclude generated markdown in .gitignore --- .gitignore | 3 ++- docs/guide/UserGuide.md | 2 +- etc/expandMarkdown.sh | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 9c57caae697..409a8c3b182 100644 --- a/.gitignore +++ b/.gitignore @@ -33,4 +33,5 @@ out/* pom.xml.releaseBackup **/pom.xml.releaseBackup .classpath -docs/javadoc +docs/_site +docs/guide/EX-* diff --git a/docs/guide/UserGuide.md b/docs/guide/UserGuide.md index 650a6ccbd16..50774952324 100644 --- a/docs/guide/UserGuide.md +++ b/docs/guide/UserGuide.md @@ -1,3 +1,3 @@ The user guide will be developed here. -* [LabeledEdges demo](LabeledEdges) +* [LabeledEdges demo](EX-LabeledEdges) diff --git a/etc/expandMarkdown.sh b/etc/expandMarkdown.sh index 7a62c1f7006..34ff6ed4afd 100755 --- a/etc/expandMarkdown.sh +++ b/etc/expandMarkdown.sh @@ -9,7 +9,7 @@ shopt -s failglob pushd ${TRAVIS_BUILD_DIR}/docs/guide-templates for file in *.md; do - hercule ${file} -o ${TRAVIS_BUILD_DIR}/docs/guide/${file} + hercule ${file} -o ${TRAVIS_BUILD_DIR}/docs/guide/EX-${file} done popd