Loading src/OdtConverter.php +11 −0 Original line number Diff line number Diff line Loading @@ -395,6 +395,17 @@ class OdtConverter { $this->html .= "\n"; break; // Space character. case "text:s": $count = $xml->getAttribute('text:c'); if ($count !== NULL) { $this->html .= str_repeat(' ', $count); } else { $this->html .= ' '; } break; case "style:style": $name = $xml->getAttribute('style:name'); $parent = $xml->getAttribute('style:parent-style-name'); Loading Loading
src/OdtConverter.php +11 −0 Original line number Diff line number Diff line Loading @@ -395,6 +395,17 @@ class OdtConverter { $this->html .= "\n"; break; // Space character. case "text:s": $count = $xml->getAttribute('text:c'); if ($count !== NULL) { $this->html .= str_repeat(' ', $count); } else { $this->html .= ' '; } break; case "style:style": $name = $xml->getAttribute('style:name'); $parent = $xml->getAttribute('style:parent-style-name'); Loading