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

38 lines
365 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>
2018-04-05 18:54:35 +03:00
```
````
the following isn't quite enough to close
```
still a fenced code block
2018-04-09 16:11:49 +03:00
````
```
foo
bar
```