diff options
| author | John MacFarlane <fiddlosopher@gmail.com> | 2014-09-06 19:41:51 -0700 | 
|---|---|---|
| committer | John MacFarlane <fiddlosopher@gmail.com> | 2014-09-06 19:41:51 -0700 | 
| commit | f5a456175cfde7bad10fad96e9fa17d357c8244a (patch) | |
| tree | 9149b5853ed94187d948af27ac2881605415301e /js | |
| parent | 9858400cefef4d5ef96e19caeb554cd0b283d12e (diff) | |
Adjusted HTML output for fenced code to match #71 change.
Diffstat (limited to 'js')
| -rwxr-xr-x | js/stmd.js | 7 | 
1 files changed, 4 insertions, 3 deletions
| @@ -1478,9 +1478,10 @@ var renderBlock = function(block, in_tight_list) {      case 'FencedCode':        info_words = block.info.split(/ +/);        attr = info_words.length === 0 || info_words[0].length === 0 ? -                   [] : [['class',this.escape(info_words[0],true)]]; -      return inTags('pre', attr, -              inTags('code', [], this.escape(block.string_content))); +                   [] : [['class','language-' + +                                   this.escape(info_words[0],true)]]; +      return inTags('pre', [], +              inTags('code', attr, this.escape(block.string_content)));      case 'HtmlBlock':        return block.string_content;      case 'ReferenceDef': | 
