showdown/test/functional/makemarkdown/cases/standard/github-style-codeblock.md

21 lines
184 B
Markdown
Raw Normal View History

2012-06-13 23:05:31 -06:00
Define a function in javascript:
```
function MyFunc(a) {
var s = '`';
2012-06-13 23:05:31 -06:00
}
```
And some HTML
```html
<div>HTML!</div>
```
2017-12-23 12:35:31 +00:00
```javascript
function foo() {
2017-12-23 13:20:14 +00:00
return 'bar';
2017-12-23 12:35:31 +00:00
}
```