showdown/test/functional/makemarkdown/cases/standard/github-style-codeblock.md
2017-12-23 12:35:31 +00:00

21 lines
180 B
Markdown

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