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

21 lines
180 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() {
return 'bar';
}
```