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); }