grenhaz/yii2-highlight

Yii2 Highlight 包装器

安装: 23

依赖项: 0

建议者: 0

安全性: 0

星标: 0

关注者: 1

分叉: 0

开放性问题: 0

语言:CSS

类型:yii2-extension

1.0.0 2018-03-17 13:02 UTC

This package is not auto-updated.

Last update: 2024-09-29 06:31:02 UTC


README

查看:https://highlightjs.org/

安装

安装此扩展的首选方法是通过 composer

可以运行

php composer.phar require --prefer-dist grenhaz/yii2-highlight

或者将以下内容添加到您的 composer.json 的 require 部分:

"grenhaz/yii2-highlight": "~1.0.0"

to the require section of your composer.json.

基本用法

use yii\helpers\Json;
use grenhaz\highlight\HighlightWidget;

echo HighlightWidget::widget([
    "language" => "json",
    "code" => Json::encode( Json::decode( $data ), JSON_PRETTY_PRINT )
]);

示例

Example