From b8660ee8bc93b3a656b1670aa0f6bb6fed43d86e Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 13 Jan 2020 18:08:17 -0500 Subject: [PATCH] forgot to forward --- htmltotext.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htmltotext.d b/htmltotext.d index 8410680..3fd98a7 100644 --- a/htmltotext.d +++ b/htmltotext.d @@ -468,6 +468,6 @@ class HtmlConverter { /// string htmlToText(string html, bool wantWordWrap = true, int wrapAmount = 74) { auto converter = new HtmlConverter(); - return converter.convert(html, true, wrapAmount); + return converter.convert(html, wantWordWrap, wrapAmount); }