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

21 lines
184 B
Markdown
Raw Normal View History

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