detail pages for customers and projects (#1371)

This commit is contained in:
Kevin Papst
2020-01-16 16:25:28 +01:00
committed by GitHub
parent 28c5357f11
commit 6a44dbfe83
131 changed files with 3055 additions and 1742 deletions

View File

@@ -34,7 +34,9 @@ class MarkdownTest extends TestCase
<pre><code>ssdfsdf</code></pre>
<p>sdfsdf <a href="#test-1">asdfasdf</a> asdfasdf</p>
<h1 id="test-1">test</h1>
<p>aasdfasdf</p>
<p>aasdfasdf<br />
1111<br />
222</p>
EOT;
$markdown = <<<EOT
@@ -52,6 +54,8 @@ sdfsdf [asdfasdf](#test-1) asdfasdf
# test
aasdfasdf
1111
222
EOT;
$this->assertEquals($html, $sut->toHtml($markdown));
}