[asdf-devel] [patch] markdown documentation tweaks

Daniel Herring dherring at tentpost.com
Sun Jan 24 03:41:04 UTC 2010


The attached patch fixes the markdown files in asdf.

Git command to apply it:
# git am 0001-markdown-documentation-tweaks.patch

Later,
Daniel
-------------- next part --------------
From c286a733fcb848130b8bd488c52a7033967d291d Mon Sep 17 00:00:00 2001
From: D Herring <dherring at at.tentpost.dot.com>
Date: Sat, 23 Jan 2010 22:36:50 -0500
Subject: [PATCH] markdown documentation tweaks

Quote filenames so they work with an upcasing CL on a case-sensitive filesystem.
---
 website/source/contributors.md            |    4 ++--
 website/source/copyright.md               |    4 ++--
 website/source/glossary.md                |    4 ++--
 website/source/resources/header.md        |    2 +-
 website/source/resources/shared-header.md |    2 +-
 website/source/resources/ug-header.md     |    2 +-
 6 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/website/source/contributors.md b/website/source/contributors.md
index f982760..de9a255 100644
--- a/website/source/contributors.md
+++ b/website/source/contributors.md
@@ -1,4 +1,4 @@
-{include resources/header.md}
+{include "resources/header.md"}
 
 <div class="contents">
 
@@ -19,7 +19,7 @@
 </div>
 
 </div>
-{include resources/footer.md}
+{include "resources/footer.md"}
 </div>
 
 
diff --git a/website/source/copyright.md b/website/source/copyright.md
index 0211851..d56aa7e 100644
--- a/website/source/copyright.md
+++ b/website/source/copyright.md
@@ -1,4 +1,4 @@
-{include resources/header.md}
+{include "resources/header.md"}
 
 <div class="contents">
 
@@ -34,7 +34,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 </div>
 
 </div>
-{include resources/footer.md}
+{include "resources/footer.md"}
 </div>
 
 
diff --git a/website/source/glossary.md b/website/source/glossary.md
index 1b10b8d..ed60dca 100644
--- a/website/source/glossary.md
+++ b/website/source/glossary.md
@@ -1,4 +1,4 @@
-{include resources/header.md}
+{include "resources/header.md"}
 
 ## Glossary
 
@@ -8,4 +8,4 @@
 fixture is the code that prepares the environment for the test and that resets 
 the environment after the test. Fixtures can be shared by many test-cases.
 
-{include resources/footer.md}
+{include "resources/footer.md"}
diff --git a/website/source/resources/header.md b/website/source/resources/header.md
index 059da79..0d41095 100644
--- a/website/source/resources/header.md
+++ b/website/source/resources/header.md
@@ -1,4 +1,4 @@
-{include shared-header.md}
+{include "shared-header.md"}
 
 <div class="header">
 	<span class="logo">
diff --git a/website/source/resources/shared-header.md b/website/source/resources/shared-header.md
index 7e35df5..8ade3b8 100644
--- a/website/source/resources/shared-header.md
+++ b/website/source/resources/shared-header.md
@@ -1,4 +1,4 @@
-{include shared-links.md}
+{include "shared-links.md"}
 
 {set-property html yes}
 {set-property author "the ASDF group"}
diff --git a/website/source/resources/ug-header.md b/website/source/resources/ug-header.md
index 8b8b98d..2630a95 100644
--- a/website/source/resources/ug-header.md
+++ b/website/source/resources/ug-header.md
@@ -1,4 +1,4 @@
-{include shared-header.md}
+{include "shared-header.md"}
 
 {set-property style-sheets 
   "user-guide.css"
-- 
1.6.0.2



More information about the asdf-devel mailing list