Blame | Letzte Änderung | Log anzeigen | RSS feed
<?phprequire_once(HTML2PS_DIR.'inline.content.builder.php');class InlineContentBuilderPre extends InlineContentBuilder {function InlineContentBuilderPre() {$this->InlineContentBuilder();}/*** CSS 2.1 16.6 Whitespace: the 'white-space' property** pre** This value prevents user agents from collapsing sequences of* whitespace. Lines are only broken at newlines in the source, or* at occurrences of "\A" in generated content.*/function build(&$box, $text, &$pipeline) {$text = $this->remove_trailing_linefeeds($text);$lines = $this->break_into_lines($text);$parent =& $box->get_parent_node();for ($i=0, $size = count($lines); $i<$size; $i++) {$line = $lines[$i];$box->process_word($line, $pipeline);if ((!$parent || $parent->isBlockLevel()) && $i < $size - 1) {$this->add_line_break($box, $pipeline);};};}}?>