diff options
author | Gulliver <gulliver@fargonauten.de> | 2014-10-09 00:45:00 +0200 |
---|---|---|
committer | Gulliver <gulliver@fargonauten.de> | 2014-10-09 00:45:00 +0200 |
commit | 7da937e2aea109e42b5ce9d6c9fe2e4e9ec877fc (patch) | |
tree | 975a69c0533623790733074a42fb3a9bb7577bd9 /oldtests/Blockquotes | |
parent | 1703abe7a21f5014ce00f04bd95d2aa4e1ba81c0 (diff) | |
parent | c69bfce61eeec398be46eb914f6280fe471b293f (diff) |
Merge branch 'master' into cmake-build
* master: (75 commits)
Remove duplicate `footer`
Correct capitalization of JavaScript
Added link to commonmark.org on web page.
Added cases from #51 to spec.
Added test case from issue #147.
Removed uthash license. We no longer use this library.
Removed bstrlib license. We no longer use this library.
Removed oldtests.
Cleaned up entity section of spec.
Adjusted tests for new js parser.
stmd.js: Fixed entityToChar, adding fromCodePoint polyfill.
Reset label_nest_level before parsing reference.
Removed spurious 'and', reflowed.
Removed spurious 'and', reflowed.
Further emph fallback optimizations.
Some jshint fixes.
Use simpler algorithm.
Revert "Use integers instead of strings for tags."
Revert "Use numerical constants."
Use numerical constants.
...
Diffstat (limited to 'oldtests/Blockquotes')
-rw-r--r-- | oldtests/Blockquotes/Indents.html | 12 | ||||
-rw-r--r-- | oldtests/Blockquotes/Indents.markdown | 5 | ||||
-rw-r--r-- | oldtests/Blockquotes/Nesting.html | 32 | ||||
-rw-r--r-- | oldtests/Blockquotes/Nesting.markdown | 22 | ||||
-rw-r--r-- | oldtests/Blockquotes/Separation.html | 39 | ||||
-rw-r--r-- | oldtests/Blockquotes/Separation.markdown | 29 |
6 files changed, 0 insertions, 139 deletions
diff --git a/oldtests/Blockquotes/Indents.html b/oldtests/Blockquotes/Indents.html deleted file mode 100644 index fd98ee8..0000000 --- a/oldtests/Blockquotes/Indents.html +++ /dev/null @@ -1,12 +0,0 @@ -<blockquote> -<p>one -blockquote</p> -</blockquote> -<blockquote> -<blockquote> -<blockquote> -<p>triply nested -triply nested</p> -</blockquote> -</blockquote> -</blockquote> diff --git a/oldtests/Blockquotes/Indents.markdown b/oldtests/Blockquotes/Indents.markdown deleted file mode 100644 index f9342ff..0000000 --- a/oldtests/Blockquotes/Indents.markdown +++ /dev/null @@ -1,5 +0,0 @@ -> one - > blockquote - ->>> triply nested - > > > triply nested diff --git a/oldtests/Blockquotes/Nesting.html b/oldtests/Blockquotes/Nesting.html deleted file mode 100644 index f40e999..0000000 --- a/oldtests/Blockquotes/Nesting.html +++ /dev/null @@ -1,32 +0,0 @@ -<p>These are all equivalent:</p> -<blockquote> -<blockquote> -<p>nested -blockquote</p> -</blockquote> -</blockquote> -<blockquote> -<blockquote> -<p>nested -blockquote</p> -</blockquote> -</blockquote> -<blockquote> -<blockquote> -<p>nested -blockquote</p> -</blockquote> -</blockquote> -<blockquote> -<blockquote> -<p>nested -blockquote</p> -</blockquote> -</blockquote> -<p>This is not:</p> -<blockquote> -<p>nested</p> -<blockquote> -<p>blockquote</p> -</blockquote> -</blockquote> diff --git a/oldtests/Blockquotes/Nesting.markdown b/oldtests/Blockquotes/Nesting.markdown deleted file mode 100644 index 3d67843..0000000 --- a/oldtests/Blockquotes/Nesting.markdown +++ /dev/null @@ -1,22 +0,0 @@ -These are all equivalent: - -> > nested -> > blockquote - - ->> nested ->> blockquote - - -> > nested -blockquote - - -> > nested -> blockquote - - -This is not: - -> nested -> > blockquote diff --git a/oldtests/Blockquotes/Separation.html b/oldtests/Blockquotes/Separation.html deleted file mode 100644 index 910d545..0000000 --- a/oldtests/Blockquotes/Separation.html +++ /dev/null @@ -1,39 +0,0 @@ -<p>One blockquote, two paragraphs:</p> -<blockquote> -<p>one</p> -<p>two</p> -</blockquote> -<p>Two blockquotes:</p> -<blockquote> -<p>one</p> -</blockquote> -<blockquote> -<p>two</p> -</blockquote> -<p>Nested blockquote, two paragraphs:</p> -<blockquote> -<blockquote> -<p>one</p> -<p>two</p> -</blockquote> -</blockquote> -<p>Nested blockquote, two blockquotes:</p> -<blockquote> -<blockquote> -<p>one</p> -</blockquote> -<blockquote> -<p>two</p> -</blockquote> -</blockquote> -<p>Two nested blockquotes:</p> -<blockquote> -<blockquote> -<p>one</p> -</blockquote> -</blockquote> -<blockquote> -<blockquote> -<p>two</p> -</blockquote> -</blockquote> diff --git a/oldtests/Blockquotes/Separation.markdown b/oldtests/Blockquotes/Separation.markdown deleted file mode 100644 index 823d865..0000000 --- a/oldtests/Blockquotes/Separation.markdown +++ /dev/null @@ -1,29 +0,0 @@ -One blockquote, two paragraphs: - -> one -> -> two - -Two blockquotes: - -> one - -> two - -Nested blockquote, two paragraphs: - -> > one -> > -> > two - -Nested blockquote, two blockquotes: - -> > one -> -> > two - -Two nested blockquotes: - -> > one - -> > two |