Jelajahi Sumber

chore: add newline at end of test files

Estevao Soares dos Santos 8 tahun lalu
induk
melakukan
d3ebbc128e
50 mengubah file dengan 48 tambahan dan 50 penghapusan
  1. 1 1
      test/cases/anchors-by-reference.md
  2. 1 1
      test/cases/automatic-anchors.md
  3. 1 1
      test/cases/blockquote-nested-markdown.md
  4. 1 1
      test/cases/blockquote.md
  5. 1 1
      test/cases/code-block-html-escape.md
  6. 1 1
      test/cases/code-block.md
  7. 1 1
      test/cases/doubline-list.md
  8. 1 1
      test/cases/escaping.md
  9. 1 1
      test/cases/github-style-at-start.md
  10. 1 1
      test/cases/github-style-codeblock.md
  11. 1 1
      test/cases/github-style-linebreaks.md
  12. 1 1
      test/cases/h1-with-double-hash.md
  13. 1 1
      test/cases/h1-with-equals.md
  14. 1 1
      test/cases/h1-with-single-hash.md
  15. 1 1
      test/cases/h2-with-dashes.md
  16. 1 1
      test/cases/h2-with-double-hash.md
  17. 1 1
      test/cases/h2-with-single-hash.md
  18. 1 1
      test/cases/h3-with-double-hash.md
  19. 1 1
      test/cases/h3-with-single-hash.md
  20. 1 1
      test/cases/h4-with-single-hash.md
  21. 1 1
      test/cases/h5-with-single-hash.md
  22. 1 1
      test/cases/h6-with-single-hash.md
  23. 1 1
      test/cases/html5-strutural-tags.md
  24. 1 1
      test/cases/images.md
  25. 1 1
      test/cases/implicit-anchors.md
  26. 1 1
      test/cases/inline-anchors.md
  27. 1 1
      test/cases/inline-code.md
  28. 1 1
      test/cases/inline-escaped-chars.md
  29. 1 1
      test/cases/inline-style-tag.md
  30. 1 1
      test/cases/lazy-blockquote.md
  31. 1 1
      test/cases/line-starts-with-html.md
  32. 1 1
      test/cases/list-followed-by-blockquote.md
  33. 1 1
      test/cases/list-followed-by-ghcode.md
  34. 1 1
      test/cases/list-with-blockquote.md
  35. 1 1
      test/cases/list-with-code.md
  36. 1 1
      test/cases/literal-html-tags.md
  37. 1 1
      test/cases/multi-paragraph-list.md
  38. 1 1
      test/cases/multiline-unordered-list.md
  39. 1 1
      test/cases/nested-blockquote.md
  40. 1 1
      test/cases/ordered-list-same-number.md
  41. 1 1
      test/cases/ordered-list-wrong-numbers.md
  42. 1 1
      test/cases/ordered-list.md
  43. 0 1
      test/cases/pre-code-tags-inside-code-block.md
  44. 0 1
      test/cases/pre-code-tags.md
  45. 1 1
      test/cases/relative-anchors.md
  46. 1 1
      test/cases/simple-paragraph.md
  47. 1 1
      test/cases/strong.md
  48. 1 1
      test/cases/unordered-list-asterisk.md
  49. 1 1
      test/cases/unordered-list-minus.md
  50. 1 1
      test/cases/unordered-list-plus.md

+ 1 - 1
test/cases/anchors-by-reference.md

@@ -8,4 +8,4 @@ This is [a fourth][4] reference-style link.
   [foo]: http://example.com/  (Optional Title Here)
   [bar]: http://example.com/  (Optional Title Here)
   [4]: <http://example.com/>
-    "Optional Title Here"
+    "Optional Title Here"

+ 1 - 1
test/cases/automatic-anchors.md

@@ -1,2 +1,2 @@
 
-<http://example.com/>
+<http://example.com/>

+ 1 - 1
test/cases/blockquote-nested-markdown.md

@@ -5,4 +5,4 @@
 >
 > Here's some example code:
 >
->     return shell_exec("echo $input | $markdown_script");
+>     return shell_exec("echo $input | $markdown_script");

+ 1 - 1
test/cases/blockquote.md

@@ -1,4 +1,4 @@
   
   > This is a multi line blockquote test
   >
-  > With more than one line.
+  > With more than one line.

+ 1 - 1
test/cases/code-block-html-escape.md

@@ -1,4 +1,4 @@
 
 This is some HTML:
 
-    <h1>Heading</h1>
+    <h1>Heading</h1>

+ 1 - 1
test/cases/code-block.md

@@ -1,4 +1,4 @@
 
 This is a normal paragraph:
 
-    This is a code block.
+    This is a code block.

+ 1 - 1
test/cases/doubline-list.md

@@ -1,4 +1,4 @@
 
  *  Bird
 
- *  Magic
+ *  Magic

+ 1 - 1
test/cases/escaping.md

@@ -29,4 +29,4 @@ These should all be escaped:
 
 \.
 
-\!
+\!

+ 1 - 1
test/cases/github-style-at-start.md

@@ -4,4 +4,4 @@ function MyFunc(a) {
 }
 ```
 
-That is some code!
+That is some code!

+ 1 - 1
test/cases/github-style-codeblock.md

@@ -11,4 +11,4 @@ And some HTML
 
 ```html
 <div>HTML!</div>
-```
+```

+ 1 - 1
test/cases/github-style-linebreaks.md

@@ -1,4 +1,4 @@
 ```
 code can go here
 this is rendered on a second line
-```
+```

+ 1 - 1
test/cases/h1-with-double-hash.md

@@ -1 +1 @@
-# This is an H1 #
+# This is an H1 #

+ 1 - 1
test/cases/h1-with-equals.md

@@ -1,2 +1,2 @@
 This is an H1
-=============
+=============

+ 1 - 1
test/cases/h1-with-single-hash.md

@@ -1 +1 @@
-# This is an H1
+# This is an H1

+ 1 - 1
test/cases/h2-with-dashes.md

@@ -1,2 +1,2 @@
 This is an H2
--------------
+-------------

+ 1 - 1
test/cases/h2-with-double-hash.md

@@ -1 +1 @@
-## This is an H2 ##
+## This is an H2 ##

+ 1 - 1
test/cases/h2-with-single-hash.md

@@ -1 +1 @@
-## This is an H2
+## This is an H2

+ 1 - 1
test/cases/h3-with-double-hash.md

@@ -1 +1 @@
-### This is an H3 ###
+### This is an H3 ###

+ 1 - 1
test/cases/h3-with-single-hash.md

@@ -1 +1 @@
-### This is an H3
+### This is an H3

+ 1 - 1
test/cases/h4-with-single-hash.md

@@ -1 +1 @@
-#### This is an H4
+#### This is an H4

+ 1 - 1
test/cases/h5-with-single-hash.md

@@ -1 +1 @@
-##### This is an H5
+##### This is an H5

+ 1 - 1
test/cases/h6-with-single-hash.md

@@ -1 +1 @@
-###### This is an H6
+###### This is an H6

+ 1 - 1
test/cases/html5-strutural-tags.md

@@ -66,4 +66,4 @@ the end
   <h2>Secondary title</h2>
 </hgroup>
 
-<output name="result"></output>
+<output name="result"></output>

+ 1 - 1
test/cases/images.md

@@ -5,4 +5,4 @@
 
 ![Alt text][id]
 
-  [id]: url/to/image  "Optional title attribute"
+  [id]: url/to/image  "Optional title attribute"

+ 1 - 1
test/cases/implicit-anchors.md

@@ -2,4 +2,4 @@
 Search the web at [Google][] or [Daring Fireball][].
 
   [Google]: http://google.com/
-  [Daring Fireball]: http://daringfireball.net/
+  [Daring Fireball]: http://daringfireball.net/

+ 1 - 1
test/cases/inline-anchors.md

@@ -1,4 +1,4 @@
 
 This is [an example](http://example.com/ "Title") inline link.
 
-[This link](http://example.net/) has no title attribute.
+[This link](http://example.net/) has no title attribute.

+ 1 - 1
test/cases/inline-code.md

@@ -9,4 +9,4 @@ A backtick-delimited string in a code span: `` `foo` ``
 
 Please don't use any `<blink>` tags.
 
-`&#8212;` is the decimal-encoded equivalent of `&mdash;`.
+`&#8212;` is the decimal-encoded equivalent of `&mdash;`.

+ 1 - 1
test/cases/inline-escaped-chars.md

@@ -1,3 +1,3 @@
 
 Hello.this\_is\_a\_variable
-and.this.is.another_one
+and.this.is.another_one

+ 1 - 1
test/cases/inline-style-tag.md

@@ -3,4 +3,4 @@
     p { line-height: 20px; }
 </style>
 
-An exciting sentence.
+An exciting sentence.

+ 1 - 1
test/cases/lazy-blockquote.md

@@ -1,4 +1,4 @@
 
   > This is a multi line blockquote test
 
-  > With more than one line.
+  > With more than one line.

+ 1 - 1
test/cases/line-starts-with-html.md

@@ -1,3 +1,3 @@
 <a href="foo">some text</a> words
 
-<br> words
+<br> words

+ 1 - 1
test/cases/list-followed-by-blockquote.md

@@ -6,4 +6,4 @@
 > some text in a blockquote
 
 * another list item 1
-* another list item 2
+* another list item 2

+ 1 - 1
test/cases/list-followed-by-ghcode.md

@@ -10,4 +10,4 @@ and some other line of code
 ```
 
 * another list item 1
-* another list item 2
+* another list item 2

+ 1 - 1
test/cases/list-with-blockquote.md

@@ -1,4 +1,4 @@
 *   A list item with a blockquote:
 
     > This is a blockquote
-    > inside a list item.
+    > inside a list item.

+ 1 - 1
test/cases/list-with-code.md

@@ -1,3 +1,3 @@
 *   A list item with code:
 
-        alert('Hello world!');
+        alert('Hello world!');

+ 1 - 1
test/cases/literal-html-tags.md

@@ -6,4 +6,4 @@ some <code>inline **code** block</code>
 
 yo dawg <code start="true">some <code start="false">code</code> inception</code>
 
-<div>some **div** yeah</div>
+<div>some **div** yeah</div>

+ 1 - 1
test/cases/multi-paragraph-list.md

@@ -3,4 +3,4 @@
 
     That contains multiple paragraphs.
 
- 2.  And another line
+ 2.  And another line

+ 1 - 1
test/cases/multiline-unordered-list.md

@@ -1,4 +1,4 @@
 
  - This line spans
  more than one line and is lazy
- - Similar to this line
+ - Similar to this line

+ 1 - 1
test/cases/nested-blockquote.md

@@ -3,4 +3,4 @@
   >
   > > And nesting!
   >
-  > With more than one line.
+  > With more than one line.

+ 1 - 1
test/cases/ordered-list-same-number.md

@@ -1,4 +1,4 @@
 
  1.  Red
  1.  Green
- 1.  Blue
+ 1.  Blue

+ 1 - 1
test/cases/ordered-list-wrong-numbers.md

@@ -1,4 +1,4 @@
 
  8.  Red
  1.  Green
- 3.  Blue
+ 3.  Blue

+ 1 - 1
test/cases/ordered-list.md

@@ -1,4 +1,4 @@
 
  1.  Red
  2.  Green
- 3.  Blue
+ 3.  Blue

+ 0 - 1
test/cases/pre-code-tags-inside-code-block.md

@@ -5,4 +5,3 @@ code inception
 <div>some html code inside code html tags inside a fenced code block</div>
 </code></pre>
 ```
-

+ 0 - 1
test/cases/pre-code-tags.md

@@ -14,4 +14,3 @@ foobar
 <pre><code>
 <div>some html code</div>
 </code></pre>
-

+ 1 - 1
test/cases/relative-anchors.md

@@ -1,2 +1,2 @@
 
-See my [About](/about/) page for details.
+See my [About](/about/) page for details.

+ 1 - 1
test/cases/simple-paragraph.md

@@ -1,2 +1,2 @@
 
-Hello, world!
+Hello, world!

+ 1 - 1
test/cases/strong.md

@@ -3,4 +3,4 @@
 
 __important__
 
-really **freaking**strong
+really **freaking**strong

+ 1 - 1
test/cases/unordered-list-asterisk.md

@@ -1,4 +1,4 @@
 
  * Red
  * Green
- * Blue
+ * Blue

+ 1 - 1
test/cases/unordered-list-minus.md

@@ -1,4 +1,4 @@
 
  - Red
  - Green
- - Blue
+ - Blue

+ 1 - 1
test/cases/unordered-list-plus.md

@@ -1,4 +1,4 @@
 
  + Red
  + Green
- + Blue
+ + Blue