File tree 1 file changed +12
-8
lines changed
components/Markdown/Tests
1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -102,26 +102,30 @@ public static function provider_test_conversion() {
102
102
),
103
103
'A simple paragraph – regular block markup formatting – no space at the end ' => array (
104
104
'markdown ' => <<<MD
105
- A simple paragraph
106
- MD ,
105
+ A simple paragraph
106
+ MD
107
+ ,
107
108
'expected ' => '<!-- wp:paragraph --><p>A simple paragraph</p><!-- /wp:paragraph --> ' ,
108
109
),
109
110
'A simple paragraph – regular block markup formatting – single space at the end ' => array (
110
111
'markdown ' => <<<MD
111
- A simple paragraph
112
- MD ,
112
+ A simple paragraph
113
+ MD
114
+ ,
113
115
'expected ' => '<!-- wp:paragraph --><p>A simple paragraph </p><!-- /wp:paragraph --> ' ,
114
116
),
115
117
'A simple paragraph – regular HTML formatting – no space at the end ' => array (
116
118
'markdown ' => <<<MD
117
- A simple paragraph
118
- MD ,
119
+ A simple paragraph
120
+ MD
121
+ ,
119
122
'expected ' => '<!-- wp:paragraph --><p>A simple paragraph</p><!-- /wp:paragraph --> ' ,
120
123
),
121
124
'A simple paragraph – regular HTML formatting – single space at the end ' => array (
122
125
'markdown ' => <<<MD
123
- A simple paragraph
124
- MD ,
126
+ A simple paragraph
127
+ MD
128
+ ,
125
129
'expected ' => '<!-- wp:paragraph --><p>A simple paragraph </p><!-- /wp:paragraph --> ' ,
126
130
),
127
131
'A simple list ' => array (
You can’t perform that action at this time.
0 commit comments