mirror of
https://tildegit.org/sbgodin/HtmGem.git
synced 2023-08-25 13:53:12 +02:00
Don't output a last empty line
This commit is contained in:
parent
29e7d6fc14
commit
7222306779
1
TODO
1
TODO
@ -5,7 +5,6 @@
|
|||||||
* Page menu on upper and lower sides: [parent dir] [root dir] [inline images] [raw response] [view cert]
|
* Page menu on upper and lower sides: [parent dir] [root dir] [inline images] [raw response] [view cert]
|
||||||
* Check unicode capability, UTF16 input, etc…
|
* Check unicode capability, UTF16 input, etc…
|
||||||
* Manage different type of carriage return: CR CR/LF LF
|
* Manage different type of carriage return: CR CR/LF LF
|
||||||
* Do not output an empty line for the last carriage return of the document
|
|
||||||
* Text localisation
|
* Text localisation
|
||||||
* Manage logging (cache refresh, debug)
|
* Manage logging (cache refresh, debug)
|
||||||
* Split the main loop in two: one part to decode the text to internal language, the other to make the HTML
|
* Split the main loop in two: one part to decode the text to internal language, the other to make the HTML
|
||||||
|
@ -138,6 +138,7 @@ function htmlPrepare(&$text) {
|
|||||||
|
|
||||||
function translateGemToHtml($fileContents) {
|
function translateGemToHtml($fileContents) {
|
||||||
$fileLines = preg_split("/\n/", $fileContents);
|
$fileLines = preg_split("/\n/", $fileContents);
|
||||||
|
if (empty($fileLines[-1])) array_pop($fileLines); # Don't output a last empty line
|
||||||
ob_start();
|
ob_start();
|
||||||
$mode = null;
|
$mode = null;
|
||||||
$mode_textAttributes = true;
|
$mode_textAttributes = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user