blankise the wrong lines
1 files changed, 3 insertions(+), 2 deletions(-) M bin/markdown_to_text
M bin/markdown_to_text +3 -2
@@ 2,7 2,8 @@ BEGIN { display = 1 } -/^```/ { display = !display; next } -/^---/ { display = !display; next } +/^```/ { display = !display; print ""; next } +/^---/ { display = !display; print ""; next } display { print $0 } +!display { print "" }