aozen/prism2torchlight
最新稳定版本:v1.0.0
Composer 安装命令:
composer require aozen/prism2torchlight
包简介
Laravel package to seamlessly convert PrismJS HTML code blocks to Torchlight syntax highlighting.
关键字:
README 文档
README
Prism2Torchlight is a Laravel package designed to effortlessly convert PrismJS HTML code blocks to Torchlight syntax highlighting.
Installation
You can install the package via Composer:
composer require aozen/prism2torchlight
Usage
To use Prism2Torchlight, you need to include the TorchlightCast class in your Eloquent model's $casts property. This will automatically convert PrismJS code blocks when retrieving data from the database.
use Aozen\Prism2Torchlight\TorchlightCast; class YourModel extends Model { protected $casts = [ 'text' => TorchlightCast::class, ]; }
Example
$text = '<pre class="language-php"><code>echo "Hello, Laravel!";</code></pre>'; $convertedText = Prism2Torchlight\Prism2Torchlight::convertToTorchlight($text); echo $convertedText;
Requirements
- PHP >= 7.3
- Laravel >= 7.0
License
This package is open-source software licensed under the MIT license. Feel free to copy and paste this content into your README.md file. Let me know if you have any further requests or modifications!
统计信息
- 总下载量: 7
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-12-03