From 870e63be7360b5a0097a27656048e853bc720464 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 21 Jul 2014 22:29:16 -0700 Subject: Initial commit --- oldtests/Lists/CodeBlocksInLists.html | 14 +++++++ oldtests/Lists/CodeBlocksInLists.markdown | 18 +++++++++ oldtests/Lists/ConsecutiveLists.html | 20 ++++++++++ oldtests/Lists/ConsecutiveLists.markdown | 10 +++++ oldtests/Lists/EmptyListItem.html | 10 +++++ oldtests/Lists/EmptyListItem.markdown | 7 ++++ oldtests/Lists/InBlockquote.html | 22 +++++++++++ oldtests/Lists/InBlockquote.markdown | 12 ++++++ oldtests/Lists/Indents.html | 22 +++++++++++ oldtests/Lists/Indents.markdown | 17 ++++++++ oldtests/Lists/ListsAndHRs.html | 7 ++++ oldtests/Lists/ListsAndHRs.markdown | 3 ++ oldtests/Lists/ListsAndSetextHeaders.html | 6 +++ oldtests/Lists/ListsAndSetextHeaders.markdown | 4 ++ oldtests/Lists/MultipleBlankLines.html | 56 +++++++++++++++++++++++++++ oldtests/Lists/MultipleBlankLines.markdown | 37 ++++++++++++++++++ oldtests/Lists/Start.html | 11 ++++++ oldtests/Lists/Start.markdown | 7 ++++ oldtests/Lists/Sublists.html | 49 +++++++++++++++++++++++ oldtests/Lists/Sublists.markdown | 24 ++++++++++++ oldtests/Lists/TightAndLoose.html | 49 +++++++++++++++++++++++ oldtests/Lists/TightAndLoose.markdown | 45 +++++++++++++++++++++ oldtests/Lists/TightLooseBlockquote.html | 32 +++++++++++++++ oldtests/Lists/TightLooseBlockquote.markdown | 25 ++++++++++++ oldtests/Lists/TightLooseMore.html | 7 ++++ oldtests/Lists/TightLooseMore.markdown | 4 ++ oldtests/Lists/TwoBlankLinesEndList.html | 21 ++++++++++ oldtests/Lists/TwoBlankLinesEndList.markdown | 20 ++++++++++ 28 files changed, 559 insertions(+) create mode 100644 oldtests/Lists/CodeBlocksInLists.html create mode 100644 oldtests/Lists/CodeBlocksInLists.markdown create mode 100644 oldtests/Lists/ConsecutiveLists.html create mode 100644 oldtests/Lists/ConsecutiveLists.markdown create mode 100644 oldtests/Lists/EmptyListItem.html create mode 100644 oldtests/Lists/EmptyListItem.markdown create mode 100644 oldtests/Lists/InBlockquote.html create mode 100644 oldtests/Lists/InBlockquote.markdown create mode 100644 oldtests/Lists/Indents.html create mode 100644 oldtests/Lists/Indents.markdown create mode 100644 oldtests/Lists/ListsAndHRs.html create mode 100644 oldtests/Lists/ListsAndHRs.markdown create mode 100644 oldtests/Lists/ListsAndSetextHeaders.html create mode 100644 oldtests/Lists/ListsAndSetextHeaders.markdown create mode 100644 oldtests/Lists/MultipleBlankLines.html create mode 100644 oldtests/Lists/MultipleBlankLines.markdown create mode 100644 oldtests/Lists/Start.html create mode 100644 oldtests/Lists/Start.markdown create mode 100644 oldtests/Lists/Sublists.html create mode 100644 oldtests/Lists/Sublists.markdown create mode 100644 oldtests/Lists/TightAndLoose.html create mode 100644 oldtests/Lists/TightAndLoose.markdown create mode 100644 oldtests/Lists/TightLooseBlockquote.html create mode 100644 oldtests/Lists/TightLooseBlockquote.markdown create mode 100644 oldtests/Lists/TightLooseMore.html create mode 100644 oldtests/Lists/TightLooseMore.markdown create mode 100644 oldtests/Lists/TwoBlankLinesEndList.html create mode 100644 oldtests/Lists/TwoBlankLinesEndList.markdown (limited to 'oldtests/Lists') diff --git a/oldtests/Lists/CodeBlocksInLists.html b/oldtests/Lists/CodeBlocksInLists.html new file mode 100644 index 0000000..fcd3e2a --- /dev/null +++ b/oldtests/Lists/CodeBlocksInLists.html @@ -0,0 +1,14 @@ +
    +
  1. list item +code

  2. +
  3. list item

    +
    code
    +
  4. +
  5. code
    +
  6. +
  7. code
    +
  8. +
  9. code
    +code
    +
  10. +
diff --git a/oldtests/Lists/CodeBlocksInLists.markdown b/oldtests/Lists/CodeBlocksInLists.markdown new file mode 100644 index 0000000..7730808 --- /dev/null +++ b/oldtests/Lists/CodeBlocksInLists.markdown @@ -0,0 +1,18 @@ +1. list item + code + +2. list item + ~~~ + code + ~~~ + +3. ~~~ + code + ~~~ + +4. ~~~ + code + ~~~ + +5. code + code diff --git a/oldtests/Lists/ConsecutiveLists.html b/oldtests/Lists/ConsecutiveLists.html new file mode 100644 index 0000000..f8f9098 --- /dev/null +++ b/oldtests/Lists/ConsecutiveLists.html @@ -0,0 +1,20 @@ + + + +
    +
  1. four
  2. +
  3. four
  4. +
+
    +
  1. five
  2. +
  3. five
  4. +
diff --git a/oldtests/Lists/ConsecutiveLists.markdown b/oldtests/Lists/ConsecutiveLists.markdown new file mode 100644 index 0000000..c4faa54 --- /dev/null +++ b/oldtests/Lists/ConsecutiveLists.markdown @@ -0,0 +1,10 @@ +* one +* one ++ two ++ two +- three +- three +1. four +1. four +1) five +1) five diff --git a/oldtests/Lists/EmptyListItem.html b/oldtests/Lists/EmptyListItem.html new file mode 100644 index 0000000..2c23fe1 --- /dev/null +++ b/oldtests/Lists/EmptyListItem.html @@ -0,0 +1,10 @@ + +
    +
  1. one
  2. +
  3. +
  4. three
  5. +
diff --git a/oldtests/Lists/EmptyListItem.markdown b/oldtests/Lists/EmptyListItem.markdown new file mode 100644 index 0000000..d30cbc3 --- /dev/null +++ b/oldtests/Lists/EmptyListItem.markdown @@ -0,0 +1,7 @@ +- one +- +- three + +1. one +2. +3. three diff --git a/oldtests/Lists/InBlockquote.html b/oldtests/Lists/InBlockquote.html new file mode 100644 index 0000000..da233e8 --- /dev/null +++ b/oldtests/Lists/InBlockquote.html @@ -0,0 +1,22 @@ +
+ +
+
+ +
+
+ +
+
+ +
diff --git a/oldtests/Lists/InBlockquote.markdown b/oldtests/Lists/InBlockquote.markdown new file mode 100644 index 0000000..511563b --- /dev/null +++ b/oldtests/Lists/InBlockquote.markdown @@ -0,0 +1,12 @@ +> - tight +> - tight + + +> - loose +> +> - loose + + +> - one-item list + +> - one-item list diff --git a/oldtests/Lists/Indents.html b/oldtests/Lists/Indents.html new file mode 100644 index 0000000..a11a5a6 --- /dev/null +++ b/oldtests/Lists/Indents.html @@ -0,0 +1,22 @@ +
+ +
+ + + diff --git a/oldtests/Lists/Indents.markdown b/oldtests/Lists/Indents.markdown new file mode 100644 index 0000000..293d112 --- /dev/null +++ b/oldtests/Lists/Indents.markdown @@ -0,0 +1,17 @@ + > * foo +> +> bar + + + - one + - two + + +- one + - two +- three + + +- one + - two +- three diff --git a/oldtests/Lists/ListsAndHRs.html b/oldtests/Lists/ListsAndHRs.html new file mode 100644 index 0000000..40826f7 --- /dev/null +++ b/oldtests/Lists/ListsAndHRs.html @@ -0,0 +1,7 @@ + +
diff --git a/oldtests/Lists/ListsAndHRs.markdown b/oldtests/Lists/ListsAndHRs.markdown new file mode 100644 index 0000000..19c07e7 --- /dev/null +++ b/oldtests/Lists/ListsAndHRs.markdown @@ -0,0 +1,3 @@ +* item 1 + * item 2 +* * * * * diff --git a/oldtests/Lists/ListsAndSetextHeaders.html b/oldtests/Lists/ListsAndSetextHeaders.html new file mode 100644 index 0000000..c6af9eb --- /dev/null +++ b/oldtests/Lists/ListsAndSetextHeaders.html @@ -0,0 +1,6 @@ +
    +
  1. item
  2. +
  3. item +Not header
  4. +
+
diff --git a/oldtests/Lists/ListsAndSetextHeaders.markdown b/oldtests/Lists/ListsAndSetextHeaders.markdown new file mode 100644 index 0000000..acfa655 --- /dev/null +++ b/oldtests/Lists/ListsAndSetextHeaders.markdown @@ -0,0 +1,4 @@ +1. item +2. item +Not header +---------- diff --git a/oldtests/Lists/MultipleBlankLines.html b/oldtests/Lists/MultipleBlankLines.html new file mode 100644 index 0000000..d894db1 --- /dev/null +++ b/oldtests/Lists/MultipleBlankLines.html @@ -0,0 +1,56 @@ +
    +
  1. First Item

    +
      +
    • one

      +
        +
      • two
      • +
    • +
    • one

      +
        +
      • two
      • +
    • +
  2. +
  3. Second Item

    +
      +
    • one +
        +
      • two
      • +
    • +
  4. +
+ +
    +
  1. Third Item

    +
      +
    • one +
        +
      • two
      • +
    • +
  2. +
+ +
    +
  1. Fourth Item

    +
      +
    • one +
        +
      • two
      • +
    • +
  2. +
+ diff --git a/oldtests/Lists/MultipleBlankLines.markdown b/oldtests/Lists/MultipleBlankLines.markdown new file mode 100644 index 0000000..e24a4f2 --- /dev/null +++ b/oldtests/Lists/MultipleBlankLines.markdown @@ -0,0 +1,37 @@ +1. First Item + + * one + * two + + * one + * two + +1. Second Item + + * one + * two + + + * one + * two + +1. Third Item + + * one + * two + + + + * one + * two + +1. Fourth Item + + * one + * two + + + + + * one + * two diff --git a/oldtests/Lists/Start.html b/oldtests/Lists/Start.html new file mode 100644 index 0000000..46e0550 --- /dev/null +++ b/oldtests/Lists/Start.html @@ -0,0 +1,11 @@ +
    +
  1. this list starts with 4.
  2. +
  3. and continues
  4. +
  5. the continuation number is irrelevant.
  6. +
+
    +
  1. a space odyssey
  2. +
+
    +
  1. standard lists get no start attribute
  2. +
diff --git a/oldtests/Lists/Start.markdown b/oldtests/Lists/Start.markdown new file mode 100644 index 0000000..175226f --- /dev/null +++ b/oldtests/Lists/Start.markdown @@ -0,0 +1,7 @@ +4. this list starts with 4. +5. and continues +1. the continuation number is irrelevant. + +2001) a space odyssey + +1. standard lists get no start attribute diff --git a/oldtests/Lists/Sublists.html b/oldtests/Lists/Sublists.html new file mode 100644 index 0000000..af62915 --- /dev/null +++ b/oldtests/Lists/Sublists.html @@ -0,0 +1,49 @@ +

Four levels:

+ +
    +
  1. one +
      +
    1. two +
        +
      1. three +
          +
        1. four
        2. +
      2. +
    2. +
  2. +
+
    +
  1. one +
      +
    • two +
        +
      1. three +
          +
        • four
        • +
      2. +
    • +
  2. +
+ diff --git a/oldtests/Lists/Sublists.markdown b/oldtests/Lists/Sublists.markdown new file mode 100644 index 0000000..9eced9e --- /dev/null +++ b/oldtests/Lists/Sublists.markdown @@ -0,0 +1,24 @@ +Four levels: + +- one + - two + - three + - four + + +1. one + 1. two + 1. three + 1. four + + +1) one + - two + 1) three + - four + + +- one + - two + 1. three + 1) four diff --git a/oldtests/Lists/TightAndLoose.html b/oldtests/Lists/TightAndLoose.html new file mode 100644 index 0000000..7792ebb --- /dev/null +++ b/oldtests/Lists/TightAndLoose.html @@ -0,0 +1,49 @@ +
    +
  1. tight
  2. +
+ + +
    +
  1. tight
  2. +
  3. list
  4. +
+
    +
  1. loose

  2. +
  3. list

  4. +
+
    +
  1. loose

    +
      +
    • sublist
    • +
  2. +
+
    +
  1. tight +
      +
    • sublist
    • +
  2. +
+ + diff --git a/oldtests/Lists/TightAndLoose.markdown b/oldtests/Lists/TightAndLoose.markdown new file mode 100644 index 0000000..263a34c --- /dev/null +++ b/oldtests/Lists/TightAndLoose.markdown @@ -0,0 +1,45 @@ +1. tight + + +- tight +- list + + +- loose + +- list + + +1. tight +2. list + + +1. loose + +2. list + + +1. loose + + - sublist + + + +1. tight + - sublist + + +- tight + > blockquote + and + ``` + code + ``` +- tight + + +- tight + - with loose + + - sublist +- tight diff --git a/oldtests/Lists/TightLooseBlockquote.html b/oldtests/Lists/TightLooseBlockquote.html new file mode 100644 index 0000000..7e78214 --- /dev/null +++ b/oldtests/Lists/TightLooseBlockquote.html @@ -0,0 +1,32 @@ + + +
    +
  1. Blank lines in bq don't break list +
    +

    bq

    +
  2. +
  3. Should say (2) in output
  4. +
+ diff --git a/oldtests/Lists/TightLooseBlockquote.markdown b/oldtests/Lists/TightLooseBlockquote.markdown new file mode 100644 index 0000000..08200cc --- /dev/null +++ b/oldtests/Lists/TightLooseBlockquote.markdown @@ -0,0 +1,25 @@ +* tight I + > bq + > +* tight I + + +* tight II + > bq + > + foo +* tight II + +1. Blank lines in bq don't break list + > bq + > + > +1. Should say (2) in output + +* Blank lines in bq don't break LI + * item A + > bq + > + > + * item B + \ No newline at end of file diff --git a/oldtests/Lists/TightLooseMore.html b/oldtests/Lists/TightLooseMore.html new file mode 100644 index 0000000..f26f457 --- /dev/null +++ b/oldtests/Lists/TightLooseMore.html @@ -0,0 +1,7 @@ + diff --git a/oldtests/Lists/TightLooseMore.markdown b/oldtests/Lists/TightLooseMore.markdown new file mode 100644 index 0000000..7ace63f --- /dev/null +++ b/oldtests/Lists/TightLooseMore.markdown @@ -0,0 +1,4 @@ +* foo + * bar + + blah \ No newline at end of file diff --git a/oldtests/Lists/TwoBlankLinesEndList.html b/oldtests/Lists/TwoBlankLinesEndList.html new file mode 100644 index 0000000..629add1 --- /dev/null +++ b/oldtests/Lists/TwoBlankLinesEndList.html @@ -0,0 +1,21 @@ +
    +
  1. one

  2. +
  3. two

  4. +
+
    +
  1. new list
  2. +
+
+ + +
+
    +
  1. one
  2. +
+
code
+
diff --git a/oldtests/Lists/TwoBlankLinesEndList.markdown b/oldtests/Lists/TwoBlankLinesEndList.markdown new file mode 100644 index 0000000..2984a19 --- /dev/null +++ b/oldtests/Lists/TwoBlankLinesEndList.markdown @@ -0,0 +1,20 @@ +1. one + +2. two + + +1. new list + + +> - one +> +> - two +> +> +> - new list + + +1. one + + + code -- cgit v1.2.3