diff options
author | Niklas Haas <git@nand.wakku.to> | 2014-02-22 21:15:34 +0100 |
---|---|---|
committer | Niklas Haas <git@nand.wakku.to> | 2014-02-22 21:31:03 +0100 |
commit | fc7fd1875d31dbfd37eaa058177e534b4fc6bc25 (patch) | |
tree | 15cad6ae08c535594a452e67cbe2ddc785ba7676 /html-test/ref/Nesting.html | |
parent | 91e2c21cfdaca7913dbfec17bdd7712c0c1ed732 (diff) |
Strip a single leading space from bird tracks (#201)
This makes bird tracks in the form
> foo
> bar
> bat
parse as if they had been written as
>foo
>bar
>bat
ie. without the leading whitespace in front of every line.
Ideally we also want to look into how leading whitespace affects code
blocks written using the @ @ syntax, which are currently unaffected by
this patch.
Diffstat (limited to 'html-test/ref/Nesting.html')
-rw-r--r-- | html-test/ref/Nesting.html | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/html-test/ref/Nesting.html b/html-test/ref/Nesting.html index 0d692791..41787675 100644 --- a/html-test/ref/Nesting.html +++ b/html-test/ref/Nesting.html @@ -166,9 +166,9 @@ the presence of this text pushes it out of nesting back to the top.</li ><ul ><li >Beginning of list<pre - > nested - bird - tracks</pre + >nested +bird +tracks</pre ></li ></ul ></div @@ -183,9 +183,15 @@ the presence of this text pushes it out of nesting back to the top.</li ><li >Beginning of list This belongs to the list above!<pre - > nested - bird - tracks</pre + >nested +bird +tracks + +another line + with indentation</pre + ><pre + >nested bird tracks + without leading space</pre ><ul ><li >Next list @@ -221,9 +227,9 @@ More of the indented list.<ul ><dd >Works for definition lists too.<pre - > nested - bird - tracks</pre + >nested +bird +tracks</pre ><ul ><li >Next list |