1<?php
2
3namespace Mpdf\Tag;
4
5class Pre extends BlockTag
6{
7
8	public function open($attr, &$ahtml, &$ihtml)
9	{
10		$this->mpdf->ispre = true; // ADDED - Prevents left trim of textbuffer in printbuffer()
11		parent::open($attr, $ahtml, $ihtml); // TODO: Change the autogenerated stub
12	}
13}
14