Skip to content

Commit

Permalink
Bug #12722 HTML Blockquote compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
CloCkWeRX authored and yunosh committed Sep 1, 2017
1 parent 784aca9 commit a630e55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Text/Wiki/Render/Xhtml/Blockquote.php
Expand Up @@ -60,12 +60,12 @@ function token($options)
}
// starting
if ($type == 'start') {
return "$pad<blockquote$css>";
return "\n$pad<blockquote$css><div>\n$pad ";
}

// ending
if ($type == 'end') {
return $pad . "</blockquote>\n";
return "\n$pad</div></blockquote>";
}
}
}
Expand Down

0 comments on commit a630e55

Please sign in to comment.