showdown/test/issues/#229.2.code-being-parsed-inside-HTML-code-tags.md
Estevão Soares dos Santos 7d0436d210 fix(HTMLParser): fix ghCodeBlocks being parsed inside code tags
When using html pre/code tags to wrap github's fenced code block syntax,
showdown would parsed them instead of treating them like plain code.

Closes #229
2016-01-25 01:04:06 +00:00

356 B


foo

```javascript
var s = "JavaScript syntax highlighting";
alert(s);
```

bar

this is a long paragraph

this is another long paragraph

```javascript
var s = "JavaScript syntax highlighting";
alert(s);
```

```python
s = "Python syntax highlighting"
print s
```