Skip to content

Commit

Permalink
Add missing space to newline command
Browse files Browse the repository at this point in the history
  • Loading branch information
bobvandevijver authored Jun 23, 2016
1 parent ebd0060 commit 8ff8989
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Helper/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public static function parseHtml($text) {
self::updateNode($DOM, 'ul', '\begin{itemize}', '\end{itemize}');
self::updateNode($DOM, 'li', '\item ', '');
self::updateNode($DOM, 'p', '', "\n");
self::updateNode($DOM, 'br', '\newline', '');
self::updateNode($DOM, 'br', '\newline ', '');
self::updateNode($DOM, 'a', '\url{', ' }');

// Export the new list
Expand Down

0 comments on commit 8ff8989

Please sign in to comment.