Merged older paper pi with the newer, with some recent updates.

This commit is contained in:
kplaczek
2018-04-02 22:34:15 +02:00
parent 3c0ebd26ed
commit ad53e0c861
19 changed files with 1071 additions and 160 deletions

View File

@@ -12,17 +12,10 @@ class HtmlToPos
return str_replace(['<br>', '<br/>', '<br />'], "\n", $text);
}
public function convert($html)
public function convert($html = '')
{
$posText = $this->handleNewLine($html);
// print_r($posText);
// die();
return $posText;
}
}