<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>_layouts/default.html</filename>
    </added>
    <added>
      <filename>_site/index.html</filename>
    </added>
    <added>
      <filename>_site/sample_content.gfm</filename>
    </added>
    <added>
      <filename>_site/stylesheets/screen.css</filename>
    </added>
    <added>
      <filename>stylesheets/screen.css</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,4 +1,6 @@
 ---
+title: Introduction
+layout: default
 ---
 
 GitHub Flavored Markdown
@@ -9,6 +11,11 @@ in a few significant ways and adds some additional functionality.
 
 If you're not already familiar with Markdown, you should spend 15 minutes and go over the excellent [Markdown Syntax Guide](http://daringfireball.net/projects/markdown/syntax) at Daring Fireball.
 
+If you prefer to learn by example, see the following source and result:
+
+* [Source](http://tom.preston-werner.com/github-flavored-markdown/sample_content.gfm)
+* [Result](http://github.com/mojombo/github-flavored-markdown/issues/#issue/1)
+
 Differences from traditional Markdown
 -------------------------------------
 
@@ -48,135 +55,4 @@ In addition to the changes in the previous section, certain references are auto-
 * User/Project@SHA: mojombo/god@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2
 * \#Num: #1
 * User/#Num: mojombo#1
-* User/Project#Num: mojombo/god#1
-
-These are dangerous goodies though, and we need to make sure email addresses don't get mangled:
-
-My email addy is tom@github.com.
-
-Math is hard, let's go shopping
--------------------------------
-
-In first grade I learned that 5 &gt; 3 and 2 &lt; 7. Maybe some arrows. 1 -&gt; 2 -&gt; 3. 9 &lt;- 8 &lt;- 7.
-
-Triangles man! a^2 + b^2 = c^2
-
-We all like making lists
-------------------------
-
-The above header should be an H2 tag. Now, for a list of fruits:
-
-* Red Apples
-* Purple Grapes
-* Green Kiwifruits
-
-Let's get crazy:
-
-1.  This is a list item with two paragraphs. Lorem ipsum dolor
-    sit amet, consectetuer adipiscing elit. Aliquam hendrerit
-    mi posuere lectus.
-
-    Vestibulum enim wisi, viverra nec, fringilla in, laoreet
-    vitae, risus. Donec sit amet nisl. Aliquam semper ipsum
-    sit amet velit.
-
-2.  Suspendisse id sem consectetuer libero luctus adipiscing.
-
-What about some code **in** a list? That's insane, right?
-
-1. In Ruby you can map like this:
-
-        ['a', 'b'].map { |x| x.uppercase }
-
-2. In Rails, you can do a shortcut:
-
-        ['a', 'b'].map(&amp;:uppercase)
-
-Some people seem to like definition lists
-
-&lt;dl&gt;
-  &lt;dt&gt;Lower cost&lt;/dt&gt;
-  &lt;dd&gt;The new version of this product costs significantly less than the previous one!&lt;/dd&gt;
-  &lt;dt&gt;Easier to use&lt;/dt&gt;
-  &lt;dd&gt;We've changed the product so that it's much easier to use!&lt;/dd&gt;
-&lt;/dl&gt;
-
-I am a robot
-------------
-
-Maybe you want to print `robot` to the console 1000 times. Why not?
-
-    def robot_invasion
-      puts(&quot;robot &quot; * 1000)
-    end
-
-You see, that was formatted as code because it's been indented by four spaces.
-
-How about we throw some angle braces and ampersands in there?
-
-    &lt;div class=&quot;footer&quot;&gt;
-        &amp;copy; 2004 Foo Corporation
-    &lt;/div&gt;
-
-Set in stone
-------------
-
-Preformatted blocks are useful for ASCII art:
-
-&lt;pre&gt;
-             ,-. 
-    ,     ,-.   ,-. 
-   / \   (   )-(   ) 
-   \ |  ,.&gt;-(   )-&lt; 
-    \|,' (   )-(   ) 
-     Y ___`-'   `-' 
-     |/__/   `-' 
-     | 
-     | 
-     |    -hrr- 
-  ___|_____________ 
-&lt;/pre&gt;
-
-Playing the blame game
-----------------------
-
-If you need to blame someone, the best way to do so is by quoting them:
-
-&gt; I, at any rate, am convinced that He does not throw dice.
-
-Or perhaps someone a little less eloquent:
-
-&gt; I wish you'd have given me this written question ahead of time so I
-&gt; could plan for it&#8230;I'm sure something will pop into my head here in
-&gt; the midst of this press conference, with all the pressure of trying to
-&gt; come up with answer, but it hadn't yet...
-&gt;
-&gt; I don't want to sound like
-&gt; I have made no mistakes. I'm confident I have. I just haven't &#8212; you
-&gt; just put me under the spot here, and maybe I'm not as quick on my feet
-&gt; as I should be in coming up with one.
-
-Table for two
--------------
-
-&lt;table&gt;
-  &lt;tr&gt;
-    &lt;th&gt;ID&lt;/th&gt;&lt;th&gt;Name&lt;/th&gt;&lt;th&gt;Rank&lt;/th&gt;
-  &lt;/tr&gt;
-  &lt;tr&gt;
-    &lt;td&gt;1&lt;/td&gt;&lt;td&gt;Tom Preston-Werner&lt;/td&gt;&lt;td&gt;Awesome&lt;/td&gt;
-  &lt;/tr&gt;
-  &lt;tr&gt;
-    &lt;td&gt;2&lt;/td&gt;&lt;td&gt;Albert Einstein&lt;/td&gt;&lt;td&gt;Nearly as awesome&lt;/td&gt;
-  &lt;/tr&gt;
-&lt;/table&gt;
-
-Crazy linking action
---------------------
-
-I get 10 times more traffic from [Google] [1] than from
-[Yahoo] [2] or [MSN] [3].
-
-  [1]: http://google.com/        &quot;Google&quot;
-  [2]: http://search.yahoo.com/  &quot;Yahoo Search&quot;
-  [3]: http://search.msn.com/    &quot;MSN Search&quot;
\ No newline at end of file
+* User/Project#Num: mojombo/god#1
\ No newline at end of file</diff>
      <filename>index.md</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>6a5bab5fab0e04cc7d2cf48b53ac336f46e398a2</id>
    </parent>
  </parents>
  <author>
    <name>Tom Preston-Werner</name>
    <email>tom@mojombo.com</email>
  </author>
  <url>http://github.com/mojombo/github-flavored-markdown/commit/e0d601ead729ab30fc9af27f11824b82ffcc832d</url>
  <id>e0d601ead729ab30fc9af27f11824b82ffcc832d</id>
  <committed-date>2009-04-10T15:41:54-07:00</committed-date>
  <authored-date>2009-04-10T15:41:54-07:00</authored-date>
  <message>more content</message>
  <tree>ff9d633b650d5c1bbfdc9eb9ce6184cf1c72e1da</tree>
  <committer>
    <name>Tom Preston-Werner</name>
    <email>tom@mojombo.com</email>
  </committer>
</commit>
