Add test case to make sure issue 232 no longer exists

This commit is contained in:
Hari KT 2018-02-28 23:25:38 +05:30
parent e941dcc3f0
commit e2f3961f80
2 changed files with 12 additions and 1 deletions

View File

@ -5,3 +5,7 @@ echo $message;</code></pre>
<pre><code>tilde</code></pre>
<pre><code class="language-php">echo 'language identifier';</code></pre>
<pre><code class="language-c#">echo 'language identifier with non words';</code></pre>
<pre><code class="language-html+php">&lt;?php
echo "Hello World";
?&gt;
&lt;a href="http://auraphp.com" &gt;Aura Project&lt;/a&gt;</code></pre>

View File

@ -16,3 +16,10 @@ echo 'language identifier';
```c#
echo 'language identifier with non words';
```
```html+php
<?php
echo "Hello World";
?>
<a href="http://auraphp.com" >Aura Project</a>
```