2021-07-17 15:25:39 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Tex;
|
|
|
|
|
|
|
|
use Illuminate\View\Compilers\BladeCompiler;
|
|
|
|
|
|
|
|
class TexCompiler extends BladeCompiler
|
|
|
|
{
|
|
|
|
protected $contentTags = ['<<<', '>>>'];
|
2022-05-17 01:37:07 +02:00
|
|
|
|
|
|
|
protected $rawTags = ['<<<!!', '!!>>>'];
|
2021-07-17 15:25:39 +02:00
|
|
|
}
|