adrema/app/Tex/TexCompiler.php

13 lines
208 B
PHP

<?php
namespace App\Tex;
use Illuminate\View\Compilers\BladeCompiler;
class TexCompiler extends BladeCompiler
{
protected $contentTags = ['<<<', '>>>'];
protected $rawTags = ['<<<!!', '!!>>>'];
}