Skip to content
This repository was archived by the owner on Mar 5, 2023. It is now read-only.

Commit 6ce5994

Browse files
authored
Merge pull request #25 from 8fold/8fold-sites
verify markdown works
2 parents 24b39db + 6af375b commit 6ce5994

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/Html/Elements/Edits/Del.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,6 @@
1010
use Eightfold\Markup\Html\Data\Attributes\Content;
1111
use Eightfold\Markup\Html\Data\Attributes\EventOn;
1212

13-
/**
14-
* @version 1.0.0
15-
*
16-
* Ins(ertion)
17-
*
18-
*
19-
*/
2013
class Del extends HtmlElement implements HtmlElementInterface
2114
{
2215
static public function elementName(): string

tests/uikit/CompoundTest.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,11 @@ public function testRendersWithoutContent()
1414
$result = UIKit::doubleWrap()->unfold();
1515
$this->assertEquals($expected, $result);
1616
}
17+
18+
public function testMarkdown()
19+
{
20+
$expected = "<p>Hello, World!</p>\n";
21+
$actual = UIKit::markdown("Hello, World!");
22+
$this->assertSame($expected, $actual->unfold());
23+
}
1724
}

0 commit comments

Comments
 (0)