From f40af434bcfeec7e37015192993adc639b54d79e Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Wed, 23 May 2018 03:46:53 +0100 Subject: [PATCH] unbreak Markdown.toPlaintext --- src/Markdown.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Markdown.js b/src/Markdown.js index 2b16800d85..e02118397b 100644 --- a/src/Markdown.js +++ b/src/Markdown.js @@ -156,7 +156,6 @@ export default class Markdown { this.lit(s); }; -/* renderer.paragraph = function(node, entering) { // as with toHTML, only append lines to paragraphs if there are // multiple paragraphs @@ -171,7 +170,6 @@ export default class Markdown { this.lit(node.literal); if (is_multi_line(node) && node.next) this.lit('\n\n'); }; -*/ // convert MD links into console-friendly ' < http://foo >' style links // ...except given this function never gets called with links, it's useless.