From bc5b7c288d29215c585db254a203889e0dea54e2 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Tue, 7 Oct 2014 22:35:19 -0700 Subject: Removed oldtests. --- oldtests/Code/BlankLines.html | 33 ----------------------------- oldtests/Code/BlankLines.markdown | 28 ------------------------- oldtests/Code/BlankLinesAtEnd.html | 14 ------------- oldtests/Code/BlankLinesAtEnd.markdown | 14 ------------- oldtests/Code/FenceMatching.html | 8 ------- oldtests/Code/FenceMatching.markdown | 10 --------- oldtests/Code/FencedCodeBlocks.html | 24 --------------------- oldtests/Code/FencedCodeBlocks.markdown | 35 ------------------------------- oldtests/Code/IndentedCodeBlocks.html | 22 ------------------- oldtests/Code/IndentedCodeBlocks.markdown | 22 ------------------- oldtests/Code/IndentedFences.html | 20 ------------------ oldtests/Code/IndentedFences.markdown | 26 ----------------------- oldtests/Code/IndentedInLists.html | 22 ------------------- oldtests/Code/IndentedInLists.markdown | 17 --------------- oldtests/Code/Inline.html | 13 ------------ oldtests/Code/Inline.markdown | 13 ------------ oldtests/Code/ListBreakAfter.html | 30 -------------------------- oldtests/Code/ListBreakAfter.markdown | 26 ----------------------- oldtests/Code/WhiteLines.html | 7 ------- oldtests/Code/WhiteLines.markdown | 9 -------- 20 files changed, 393 deletions(-) delete mode 100644 oldtests/Code/BlankLines.html delete mode 100644 oldtests/Code/BlankLines.markdown delete mode 100644 oldtests/Code/BlankLinesAtEnd.html delete mode 100644 oldtests/Code/BlankLinesAtEnd.markdown delete mode 100644 oldtests/Code/FenceMatching.html delete mode 100644 oldtests/Code/FenceMatching.markdown delete mode 100644 oldtests/Code/FencedCodeBlocks.html delete mode 100644 oldtests/Code/FencedCodeBlocks.markdown delete mode 100644 oldtests/Code/IndentedCodeBlocks.html delete mode 100644 oldtests/Code/IndentedCodeBlocks.markdown delete mode 100644 oldtests/Code/IndentedFences.html delete mode 100644 oldtests/Code/IndentedFences.markdown delete mode 100644 oldtests/Code/IndentedInLists.html delete mode 100644 oldtests/Code/IndentedInLists.markdown delete mode 100644 oldtests/Code/Inline.html delete mode 100644 oldtests/Code/Inline.markdown delete mode 100644 oldtests/Code/ListBreakAfter.html delete mode 100644 oldtests/Code/ListBreakAfter.markdown delete mode 100644 oldtests/Code/WhiteLines.html delete mode 100644 oldtests/Code/WhiteLines.markdown (limited to 'oldtests/Code') diff --git a/oldtests/Code/BlankLines.html b/oldtests/Code/BlankLines.html deleted file mode 100644 index ae0abf7..0000000 --- a/oldtests/Code/BlankLines.html +++ /dev/null @@ -1,33 +0,0 @@ -
foo
-
-
-
-bar
-
-
-
foo
-
-
-
-bar
-
-
-
foo
-
-    
-
-bar
-
-
    -
  1. One

    -
    CodeA
    -
    -CodeB
    -
  2. -
  3. Two

    -
    CodeA
    -
  4. -
-
    -
  1. One
  2. -
diff --git a/oldtests/Code/BlankLines.markdown b/oldtests/Code/BlankLines.markdown deleted file mode 100644 index b0d5a0c..0000000 --- a/oldtests/Code/BlankLines.markdown +++ /dev/null @@ -1,28 +0,0 @@ - foo - - - - bar -> foo -> -> -> -> bar - foo - - - - bar - -1. One - - CodeA - - CodeB - -2. Two - - CodeA - - -1. One diff --git a/oldtests/Code/BlankLinesAtEnd.html b/oldtests/Code/BlankLinesAtEnd.html deleted file mode 100644 index ac803d9..0000000 --- a/oldtests/Code/BlankLinesAtEnd.html +++ /dev/null @@ -1,14 +0,0 @@ - - - diff --git a/oldtests/Code/BlankLinesAtEnd.markdown b/oldtests/Code/BlankLinesAtEnd.markdown deleted file mode 100644 index 55879ae..0000000 --- a/oldtests/Code/BlankLinesAtEnd.markdown +++ /dev/null @@ -1,14 +0,0 @@ -* List - - code - - - * one - * two - - - -* one - not code - -* two diff --git a/oldtests/Code/FenceMatching.html b/oldtests/Code/FenceMatching.html deleted file mode 100644 index 4c7468e..0000000 --- a/oldtests/Code/FenceMatching.html +++ /dev/null @@ -1,8 +0,0 @@ -
```
-
-

-`````
-
-````
-
-
diff --git a/oldtests/Code/FenceMatching.markdown b/oldtests/Code/FenceMatching.markdown deleted file mode 100644 index d86169a..0000000 --- a/oldtests/Code/FenceMatching.markdown +++ /dev/null @@ -1,10 +0,0 @@ -````abc -``` -```` -``````blah - -````` - -```` - -``````````` diff --git a/oldtests/Code/FencedCodeBlocks.html b/oldtests/Code/FencedCodeBlocks.html deleted file mode 100644 index 4813d72..0000000 --- a/oldtests/Code/FencedCodeBlocks.html +++ /dev/null @@ -1,24 +0,0 @@ -

This is a fenced code block:

-
pairs :: [(Int,Char)]
-pairs = [(x,y) | x <- [0..10], y <- ['a'..'z']]
-
-

Here is one with tildes:

-
pairs :: [(Int,Char)]
-pairs = [(x,y) | x <- [0..10], y <- ['a'..'z']]
-
-

More metadata:

-
pairs :: [(Int,Char)]
-pairs = [(x,y) | x <- [0..10], y <- ['a'..'z']]
-
-

More backticks:

-
pairs :: [(Int,Char)]
-pairs = [(x,y) | x <- [0..10], y <- ['a'..'z']]
-
-backticks :: String
-backticks = "`````"
-
-

Without an end:

-
code with
-no end
-
-
diff --git a/oldtests/Code/FencedCodeBlocks.markdown b/oldtests/Code/FencedCodeBlocks.markdown deleted file mode 100644 index 6ccc6be..0000000 --- a/oldtests/Code/FencedCodeBlocks.markdown +++ /dev/null @@ -1,35 +0,0 @@ -This is a fenced code block: -```haskell -pairs :: [(Int,Char)] -pairs = [(x,y) | x <- [0..10], y <- ['a'..'z']] -``` -Here is one with tildes: - -~~~ haskell -pairs :: [(Int,Char)] -pairs = [(x,y) | x <- [0..10], y <- ['a'..'z']] -~~~ - -More metadata: - -```haskell numberLines start=50 -pairs :: [(Int,Char)] -pairs = [(x,y) | x <- [0..10], y <- ['a'..'z']] -``` - -More backticks: - -```````` haskell -pairs :: [(Int,Char)] -pairs = [(x,y) | x <- [0..10], y <- ['a'..'z']] - -backticks :: String -backticks = "`````" -````````````` - -Without an end: - -``` -code with -no end - diff --git a/oldtests/Code/IndentedCodeBlocks.html b/oldtests/Code/IndentedCodeBlocks.html deleted file mode 100644 index 0b9b7e7..0000000 --- a/oldtests/Code/IndentedCodeBlocks.html +++ /dev/null @@ -1,22 +0,0 @@ -

Indented code with two space indent in first and last line:

-
  two spaces *hello*
-{ more }
-
-  and
-
-

Indented code requires a leading/trailing blank line: -quick-command --option "$*"

-

Indented code does not require a trailing blank line:

-
code
-
-

and not code.

-

Code in blockquote:

-
-
code
-
-
-

Code in list:

-
    -
  1. code
    -
  2. -
diff --git a/oldtests/Code/IndentedCodeBlocks.markdown b/oldtests/Code/IndentedCodeBlocks.markdown deleted file mode 100644 index 2a99db0..0000000 --- a/oldtests/Code/IndentedCodeBlocks.markdown +++ /dev/null @@ -1,22 +0,0 @@ -Indented code with two space indent in first and last line: - - two spaces *hello* - { more } - - and - -Indented code requires a leading/trailing blank line: - quick-command --option "$*" - -Indented code does not require a trailing blank line: - - code -and not code. - -Code in blockquote: - -> code - -Code in list: - -1. code diff --git a/oldtests/Code/IndentedFences.html b/oldtests/Code/IndentedFences.html deleted file mode 100644 index 66e76da..0000000 --- a/oldtests/Code/IndentedFences.html +++ /dev/null @@ -1,20 +0,0 @@ -
a
-
-
z
-
-
a
-a
-a
- a
-
- -
-
a
-
-
diff --git a/oldtests/Code/IndentedFences.markdown b/oldtests/Code/IndentedFences.markdown deleted file mode 100644 index 098545f..0000000 --- a/oldtests/Code/IndentedFences.markdown +++ /dev/null @@ -1,26 +0,0 @@ - ``` - a - ``` - - ``` -z -``` - - ``` -a - a - a - a - ``` - -* foo - - ``` - Hello - - World - ``` - -> ``` ->a ->``` diff --git a/oldtests/Code/IndentedInLists.html b/oldtests/Code/IndentedInLists.html deleted file mode 100644 index 76ed424..0000000 --- a/oldtests/Code/IndentedInLists.html +++ /dev/null @@ -1,22 +0,0 @@ - -
    -
  1. foo

    -
    code starts here
    -
  2. -
  3. foo

    -
    code starts here
    -
  4. -
- diff --git a/oldtests/Code/IndentedInLists.markdown b/oldtests/Code/IndentedInLists.markdown deleted file mode 100644 index 54e1af1..0000000 --- a/oldtests/Code/IndentedInLists.markdown +++ /dev/null @@ -1,17 +0,0 @@ -- code starts here - -1. foo - - code starts here - -2. foo - - code starts here - -- foo - - code starts here - - - foo - - code starts here diff --git a/oldtests/Code/Inline.html b/oldtests/Code/Inline.html deleted file mode 100644 index 9c52790..0000000 --- a/oldtests/Code/Inline.html +++ /dev/null @@ -1,13 +0,0 @@ -

All of these are equivalent:

- -

Backticks in code spans:

- diff --git a/oldtests/Code/Inline.markdown b/oldtests/Code/Inline.markdown deleted file mode 100644 index 38e5b0c..0000000 --- a/oldtests/Code/Inline.markdown +++ /dev/null @@ -1,13 +0,0 @@ -All of these are equivalent: - -- `*hi*` -- ` *hi* ` -- ``*hi* `` -- ````*hi*```` -- `*hi* - ` - -Backticks in code spans: - -- ``` ``code`` ``` -- ` ``code`` ` diff --git a/oldtests/Code/ListBreakAfter.html b/oldtests/Code/ListBreakAfter.html deleted file mode 100644 index 29d6d5e..0000000 --- a/oldtests/Code/ListBreakAfter.html +++ /dev/null @@ -1,30 +0,0 @@ - -
code?
-
- -
code?
-
diff --git a/oldtests/Code/ListBreakAfter.markdown b/oldtests/Code/ListBreakAfter.markdown deleted file mode 100644 index 4fa79f1..0000000 --- a/oldtests/Code/ListBreakAfter.markdown +++ /dev/null @@ -1,26 +0,0 @@ -* foo - * bar - - code1 - code2 - - code? - -* foo - * bar - - code1 - code2 - - - code? - -* foo - * bar - - code1 - code2 - - - - code? diff --git a/oldtests/Code/WhiteLines.html b/oldtests/Code/WhiteLines.html deleted file mode 100644 index 7fa137f..0000000 --- a/oldtests/Code/WhiteLines.html +++ /dev/null @@ -1,7 +0,0 @@ -
ABC
-  
- 
-
-DEF
-
-

GHI

diff --git a/oldtests/Code/WhiteLines.markdown b/oldtests/Code/WhiteLines.markdown deleted file mode 100644 index ea17af7..0000000 --- a/oldtests/Code/WhiteLines.markdown +++ /dev/null @@ -1,9 +0,0 @@ - ABC - - - - DEF - - - -GHI -- cgit v1.2.3