aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/converter/restructuredtext.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/converter/restructuredtext.php b/lib/converter/restructuredtext.php
index 8419af6..149fa4a 100644
--- a/lib/converter/restructuredtext.php
+++ b/lib/converter/restructuredtext.php
@@ -134,7 +134,7 @@ class ReStructuredText extends Base
$headingLength = strlen(trim($reader->value));
$store .= trim($reader->value);
} else {
- $text = wordwrap($reader->value, 72 - 2 * $listLevel, "\n", true);
+ $text = wordwrap($reader->value, 72 - 2 * $listLevel, "\n");
$parts = explode("\n", $text);
foreach ($parts as $k => $v) {
if ($k == 0) {