From 2c2141be4e38975b60fb0aa3eaf6424991ece179 Mon Sep 17 00:00:00 2001 From: Johan Zicola <31694264+johanzi@users.noreply.github.com> Date: Tue, 27 Nov 2018 10:27:52 +0100 Subject: [PATCH] Make #Summary compatible with GitHub markdown Space added between # and Summary to allow proper display as title in GitHub markdown. Tested. --- summarizeMD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/summarizeMD b/summarizeMD index 7ee042e..d6af2c7 100755 --- a/summarizeMD +++ b/summarizeMD @@ -28,7 +28,7 @@ class MDUtils tmpfilename = "tmp_00_" + timeNow.inspect + ".md" temp_file = File.new(tmpfilename, "w") - summary = "\#Summary \n\n" + summary = "\# Summary \n\n" forbidden_words = ['Table of contents', 'define', 'pragma'] File.open(filename, 'r') do |f|