Resources/Mpdf/Tag/Pre.php
2025-04-02 14:15:06 +00:00

14 lines
281 B
PHP

<?php
namespace Mpdf\Tag;
class Pre extends BlockTag
{
public function open($attr, &$ahtml, &$ihtml)
{
$this->mpdf->ispre = true; // ADDED - Prevents left trim of textbuffer in printbuffer()
parent::open($attr, $ahtml, $ihtml); // TODO: Change the autogenerated stub
}
}