Version 1
[yaffs-website] / vendor / cebe / markdown / tests / github-data / github-basics.md
diff --git a/vendor/cebe/markdown/tests/github-data/github-basics.md b/vendor/cebe/markdown/tests/github-data/github-basics.md
new file mode 100644 (file)
index 0000000..ddb97d5
--- /dev/null
@@ -0,0 +1,40 @@
+GitHub Flavored Markdown
+========================
+
+Multiple underscores in words
+-----------------------------
+
+do_this_and_do_that_and_another_thing
+
+URL autolinking
+---------------
+
+http://example.com
+
+Strikethrough
+-------------
+
+~~Mistaken text.~~
+
+Fenced code blocks
+------------------
+
+```
+function test() {
+  console.log("notice the blank line before this function?");
+}
+```
+
+Syntax highlighting
+-------------------
+
+```ruby
+require 'redcarpet'
+markdown = Redcarpet.new("Hello World!")
+puts markdown.to_html
+```
+
+~~~
+this is also code
+~~~
+