Skip to content

Commit

Permalink
Merge pull request #558 from harikt/issue-232
Browse files Browse the repository at this point in the history
Add test case to make sure issue 232 no longer exists
  • Loading branch information
aidantwoods committed Feb 28, 2018
2 parents e941dcc + e2f3961 commit e8f3d4e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/data/fenced_code_block.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,8 @@
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-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>
7 changes: 7 additions & 0 deletions test/data/fenced_code_block.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,11 @@ echo 'language identifier';

```c#
echo 'language identifier with non words';
```

```html+php
<?php
echo "Hello World";
?>
<a href="http://auraphp.com" >Aura Project</a>
```

0 comments on commit e8f3d4e

Please sign in to comment.