From 50ced3b6d77ebfa005b8fd7fa632b9c336aad263 Mon Sep 17 00:00:00 2001 From: Brandon Mathis Date: Mon, 21 May 2012 20:13:24 -0500 Subject: [PATCH] updated tests for code snippets with markdown and textile --- source/test/code/markdown/index.markdown | 42 +++++++++++++++++++++--- source/test/code/textile/index.textile | 12 +++---- 2 files changed, 42 insertions(+), 12 deletions(-) diff --git a/source/test/code/markdown/index.markdown b/source/test/code/markdown/index.markdown index 484838f..72d7ce1 100644 --- a/source/test/code/markdown/index.markdown +++ b/source/test/code/markdown/index.markdown @@ -7,15 +7,15 @@ sidebar: false --- ``` coffeescript Some Coffee Script for you http://google.com/ - Tweets = 1 +Tweets = 1 - module.exports = Tweets +module.exports = Tweets ``` ``` coffeescript - Tweets = 1 - foo && bar - module.exports = Tweets +Tweets = 1 +foo && bar +module.exports = Tweets ``` {% codeblock Append this to your .bashrc file. %} @@ -31,3 +31,35 @@ unset i {% codeblock config lang:ruby %} Bunch of ruby code {% endcodeblock %} + +``` +// Spaces + +asd + asd + asd + asd + asd + asd + asd + asd + asd + asd +asd +``` + +``` +// Tabs + +asd + asd + asd + asd + asd + asd + asd + asd + asd + asd +asd +``` diff --git a/source/test/code/textile/index.textile b/source/test/code/textile/index.textile index 37e0ebc..07ca96b 100644 --- a/source/test/code/textile/index.textile +++ b/source/test/code/textile/index.textile @@ -7,16 +7,14 @@ sharing: true footer: true --- - ``` coffeescript - _Tweets_ = 1 +_Tweets_ = 1 - module.exports = Tweets +module.exports = Tweets ``` - ``` coffeescript - Tweets = 1 - foo && bar - module.exports = Tweets +Tweets = 1 +foo && bar +module.exports = Tweets ```