showdown/test/functional/makemarkdown/cases/standard/github-style-codeblock.md
Estevao Soares dos Santos 173ad51b05 test: fix tests
2017-12-23 13:20:14 +00:00

21 lines
184 B
Markdown

Define a function in javascript:
```
function MyFunc(a) {
var s = '`';
}
```
And some HTML
```html
<div>HTML!</div>
```
```javascript
function foo() {
return 'bar';
}
```