diff --git a/plugin/markdown/markdown.js b/plugin/markdown/markdown.js
index efec14e1c61eff52125e512ebdf6c501dd93b527..6c27a138ad22fea20b11c2898a4d1cd9c619030d 100755
--- a/plugin/markdown/markdown.js
+++ b/plugin/markdown/markdown.js
@@ -220,9 +220,9 @@
 				xhr.onreadystatechange = function() {
 					if( xhr.readyState === 4 ) {
 						if (
-                            (xhr.status >= 200 && xhr.status < 300) ||
-                            xhr.status === 0 // file protocol yields status code 0 (useful for local debug, mobile applications etc.)
-                            ) {
+							(xhr.status >= 200 && xhr.status < 300) ||
+							xhr.status === 0 // file protocol yields status code 0 (useful for local debug, mobile applications etc.)
+							) {
 
 							section.outerHTML = slidify( xhr.responseText, {
 								separator: section.getAttribute( 'data-separator' ),