alter test markup/rendered-html files to match better
Coby Chapple coby@cobychapple.com
Fri, 07 Jun 2013 11:43:40 +0100
2 files changed,
33 insertions(+),
24 deletions(-)
M
test/markups/README.litcoffee
→
test/markups/README.litcoffee
@@ -42,8 +42,8 @@ ###
ok yes -Regular [Markdown](http://example.com/markdown) features, like links -and unordered lists, are fine: +Regular [Markdown](http://example.com/markdown) features, +like links and unordered lists, are fine: * I
M
test/markups/README.litcoffee.html
→
test/markups/README.litcoffee.html
@@ -1,4 +1,4 @@
-<h2 id='literate_coffeescript_test'>Literate CoffeeScript Test</h2> +<h2>Literate CoffeeScript Test</h2> <blockquote> <p>Taken from https://github.com/jashkenas/coffee-script/blob/master/test/literate.litcoffee</p>@@ -7,29 +7,36 @@
<p>comment comment</p> <pre><code>test "basic literate CoffeeScript parsing", -> - ok yes</code></pre> + ok yes +</code></pre> -<p>now with a…</p> +<p>now with a...</p> -<pre><code>test "broken up indentation", -></code></pre> +<pre><code>test "broken up indentation", -> +</code></pre> -<p>… broken up …</p> +<p>... broken up ...</p> -<pre><code> do -></code></pre> +<pre><code> do -> +</code></pre> -<p>… nested block.</p> +<p>... nested block.</p> -<pre><code> ok yes</code></pre> +<pre><code> ok yes +</code></pre> <p>Code must be separated from text by a blank line.</p> -<pre><code>test "code blocks must be preceded by a blank line", -></code></pre> +<pre><code>test "code blocks must be preceded by a blank line", -> +</code></pre> -<p>The next line is part of the text and will not be executed. fail()</p> +<p>The next line is part of the text and will not be executed. + fail()</p> -<pre><code> ok yes</code></pre> +<pre><code> ok yes +</code></pre> -<p>Code in <code>backticks is not parsed</code> and…</p> +<p>Code in <code>backticks is not parsed</code> and...</p> <pre><code>test "comments in indented blocks work", -> do ->@@ -40,18 +47,20 @@ ###
Block comment. ### - ok yes</code></pre> - -<p>Regular <a href='http://example.com/markdown'>Markdown</a> features, like links and unordered lists, are fine:</p> - -<p>* I</p> - -<p>* Am</p> + ok yes +</code></pre> -<p>* A</p> +<p>Regular <a href="http://example.com/markdown">Markdown</a> features, +like links and unordered lists, are fine:</p> -<p>* List</p> +<ul> +<li><p>I</p></li> +<li><p>Am</p></li> +<li><p>A</p></li> +<li><p>List</p></li> +</ul> <p>Tabs work too:</p> -<p>test “tabbed code”, -> ok yes</p> +<p>test "tabbed code", -> + ok yes</p>