Add tex compiler

This commit is contained in:
philipp lang 2021-07-17 15:25:39 +02:00
parent aa8c9dcfd8
commit c8304a48c7
2 changed files with 47 additions and 0 deletions

12
app/Tex/TexCompiler.php Normal file
View File

@ -0,0 +1,12 @@
<?php
namespace App\Tex;
use Illuminate\View\Compilers\BladeCompiler;
class TexCompiler extends BladeCompiler
{
protected $contentTags = ['<<<', '>>>'];
}

View File

@ -0,0 +1,35 @@
<?php
namespace App\Tex;
use Illuminate\Support\ServiceProvider;
use Illuminate\View\Compilers\BladeCompiler;
use Illuminate\View\DynamicComponent;
use Illuminate\View\Engines\CompilerEngine;
class TexServiceProvider extends ServiceProvider
{
/**
* Register services.
*
* @return void
*/
public function register()
{
view()->addExtension('tex', 'tex', function() {
$compiler = new TexCompiler(app('files'), config('view.compiled'));
return new CompilerEngine($compiler, app('files'));
});
}
/**
* Bootstrap services.
*
* @return void
*/
public function boot()
{
//
}
}