aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-10-30 22:37:41 +0100
committerMario Vavti <mario@mariovavti.com>2018-10-30 22:37:41 +0100
commitb4bac88c39c6bc6a0533114351ab9f5493aa46c9 (patch)
treeb1182bbbcc02fb3dd59cf338db308884aba6c238 /tests
parentc622ba84b9aadd4377ce5ea283121ac27726ea83 (diff)
downloadvolse-hubzilla-b4bac88c39c6bc6a0533114351ab9f5493aa46c9.tar.gz
volse-hubzilla-b4bac88c39c6bc6a0533114351ab9f5493aa46c9.tar.bz2
volse-hubzilla-b4bac88c39c6bc6a0533114351ab9f5493aa46c9.zip
fix markdown tests
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/includes/MarkdownTest.php18
1 files changed, 6 insertions, 12 deletions
diff --git a/tests/unit/includes/MarkdownTest.php b/tests/unit/includes/MarkdownTest.php
index c1408b303..654fbd4c7 100644
--- a/tests/unit/includes/MarkdownTest.php
+++ b/tests/unit/includes/MarkdownTest.php
@@ -55,7 +55,7 @@ class MarkdownTest extends UnitTestCase {
'strong, b, em, i, bib' => [
'<strong>strong</strong> <b>bold</b> <em>em</em> <i>italic</i> <b>bo<i>italic</i>ld</b>',
- '**strong** **bold** _em_ _italic_ **bo_italic_ld**'
+ '**strong** **bold** *em* *italic* **bo*italic*ld**'
],
'empty tags' => [
@@ -70,10 +70,6 @@ class MarkdownTest extends UnitTestCase {
'&amp; lt &lt; gt &gt;',
'& lt < gt >'
],
- 'our escaped HTML entities' => [
- '&_lt_; &_gt_; &_amp_;',
- '&\_lt\_; &\_gt\_; &\_amp\_;'
- ],
'linebreak' => [
"line1<br>line2\nline3",
"line1 \nline2 line3"
@@ -84,15 +80,15 @@ class MarkdownTest extends UnitTestCase {
],
'unordered list' => [
'<ul><li>Item 1</li><li>Item 2</li><li>Item <b>3</b></li></ul>',
- "- Item 1\n- Item 2\n- Item 3"
+ "- Item 1\n- Item 2\n- Item **3**"
],
'ordered list' => [
'<ol><li>Item 1</li><li>Item 2</li><li>Item <b>3</b></li></ol>',
- "1. Item 1\n2. Item 2\n3. Item 3"
+ "1. Item 1\n2. Item 2\n3. Item **3**"
],
'nested lists' => [
'<ul><li>Item 1<ol><li>Item 1a</li><li>Item <b>1b</b></ol></li><li>Item 2</li></ul>',
- "- Item 1\n 1. Item 1a\n 2. Item 1b\n- Item 2"
+ "- Item 1\n 1. Item 1a\n 2. Item **1b**\n- Item 2"
],
'img' => [
'<img src="/path/to/img.png" alt="alt text" title="title text">',
@@ -118,12 +114,10 @@ class MarkdownTest extends UnitTestCase {
'<code>&lt;p&gt;HTML text&lt;/p&gt;</code>',
'`<p>HTML text</p>`'
],
-
'pre' => [
- '<pre> line with spaces </pre>',
- '` line with spaces `'
+ '<pre> one line with spaces </pre>',
+ '```\n one line with spaces \n```'
],
-
'div p' => [
'<div>div</div><div><p>p</p></div>',
"<div>div</div><div>p\n\n</div>"