1<?php
2
3namespace Mpdf\Tag;
4
5class Toc extends Tag
6{
7
8	public function open($attr, &$ahtml, &$ihtml)
9	{
10		//added custom-tag - set Marker for insertion later of ToC
11		$this->tableOfContents->openTagTOC($attr);
12	}
13
14	public function close(&$ahtml, &$ihtml)
15	{
16	}
17}
18