mirror of
https://github.com/archtechx/laravel-tips.git
synced 2025-12-12 21:34:03 +00:00
14 lines
307 B
PHP
14 lines
307 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use League\CommonMark\GithubFlavoredMarkdownConverter;
|
|
use Illuminate\Support\Str;
|
|
|
|
class MarkdownCompiler
|
|
{
|
|
public static function compileMarkdownString(string $expression): string
|
|
{
|
|
return (new GithubFlavoredMarkdownConverter())->convertToHtml($expression);
|
|
}
|
|
}
|