1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00
parsedown/test/data/fenced_code_block.md

25 lines
263 B
Markdown
Raw Normal View History

```
<?php
$message = 'fenced code block';
echo $message;
```
~~~
tilde
2013-12-26 23:55:33 +04:00
~~~
```php
echo 'language identifier';
```
```c#
echo 'language identifier with non words';
```
```html+php
<?php
echo "Hello World";
?>
<a href="http://auraphp.com" >Aura Project</a>
2013-12-26 23:55:33 +04:00
```