diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-08-26 10:50:49 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-08-26 10:50:49 -0700 |
commit | 15a76ded8fe35cf2a8f30720ffdf6abf9e7ecc41 (patch) | |
tree | a137ad3336e41d540d597365a7a8fab3cef78683 /test | |
parent | 880039601d2bc4baf4e17649a02480876917d0ae (diff) |
Updated spec.txt.
Diffstat (limited to 'test')
-rw-r--r-- | test/spec.txt | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/test/spec.txt b/test/spec.txt index baddf2f..6862838 100644 --- a/test/spec.txt +++ b/test/spec.txt @@ -5719,13 +5719,12 @@ a backtick string of equal length. The contents of the code span are the characters between the two backtick strings, normalized in the following ways: -- First, [line endings] are converted to [spaces], unless they are - adjacent to [spaces], in which case they are ignored. -- If the string both begins *and* ends with a [space] character, - a single [space] character is removed from the front and back. - This allows you to include code that begins or ends with backtick - characters, which must be separated by whitespace from the opening - or closing backtick strings. +- First, [line endings] are converted to [spaces]. +- If the resulting string both begins *and* ends with a [space] + character, a single [space] character is removed from the + front and back. This allows you to include code that begins + or ends with backtick characters, which must be separated by + whitespace from the opening or closing backtick strings. This is a simple code span: @@ -5783,8 +5782,7 @@ stripped in this way: ```````````````````````````````` -[Line endings] are treated like spaces, unless they -come after spaces, in which case they are ignored. +[Line endings] are treated like spaces: ```````````````````````````````` example `` @@ -5793,12 +5791,12 @@ bar baz `` . -<p><code>foo bar baz</code></p> +<p><code>foo bar baz</code></p> ```````````````````````````````` ```````````````````````````````` example -`` -foo +`` +foo `` . <p><code>foo </code></p> @@ -5808,7 +5806,7 @@ foo Interior spaces are not collapsed: ```````````````````````````````` example -`foo bar +`foo bar baz` . <p><code>foo bar baz</code></p> @@ -9038,7 +9036,7 @@ bar</em></p> Line breaks do not occur inside code spans ```````````````````````````````` example -`code +`code span` . <p><code>code span</code></p> |