From 44548ba357490943cfa6a2e5139863bd4fc4f66a Mon Sep 17 00:00:00 2001 From: Hakim El Hattab Date: Thu, 22 Jan 2015 08:46:14 +0100 Subject: [PATCH] add global flag back in for whitespace removal, without it most of the content in example.html does not work #682 --- plugin/markdown/example.html | 2 +- plugin/markdown/markdown.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/markdown/example.html b/plugin/markdown/example.html index 364e866..36f6a51 100644 --- a/plugin/markdown/example.html +++ b/plugin/markdown/example.html @@ -7,7 +7,7 @@ reveal.js - Markdown Demo - + diff --git a/plugin/markdown/markdown.js b/plugin/markdown/markdown.js index 9afee06..4847c7a 100755 --- a/plugin/markdown/markdown.js +++ b/plugin/markdown/markdown.js @@ -50,7 +50,7 @@ text = text.replace( new RegExp('\\n?\\t{' + leadingTabs + '}','g'), '\n' ); } else if( leadingWs > 1 ) { - text = text.replace( new RegExp('\\n? {' + leadingWs + '}'), '\n' ); + text = text.replace( new RegExp('\\n? {' + leadingWs + '}', 'g'), '\n' ); } return text;