diff options
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 |