| Index: chrome/browser/resources/md_extensions/code_section.js
|
| diff --git a/chrome/browser/resources/md_extensions/code_section.js b/chrome/browser/resources/md_extensions/code_section.js
|
| index d0a93e2aac26986641c78f2ba764867322b36546..7c9389a5551b889f16080ed0b085f6d4bdd18a97 100644
|
| --- a/chrome/browser/resources/md_extensions/code_section.js
|
| +++ b/chrome/browser/resources/md_extensions/code_section.js
|
| @@ -37,9 +37,9 @@ cr.define('extensions', function() {
|
| if (!this.code)
|
| return '';
|
|
|
| - var lines = [this.code.beforeHighlight,
|
| - this.code.highlight,
|
| - this.code.afterHighlight].join('').match(/\n/g);
|
| + var lines = [
|
| + this.code.beforeHighlight, this.code.highlight, this.code.afterHighlight
|
| + ].join('').match(/\n/g);
|
| var lineCount = lines ? lines.length : 0;
|
| var textContent = '';
|
| for (var i = 1; i <= lineCount; ++i)
|
|
|