forti/bbcode

BBcode 包

安装: 16

依赖: 0

建议者: 0

安全: 0

星标: 0

关注者: 2

分支: 1

开放问题: 0

类型:symfony-bundle

v1.0.5 2016-03-26 21:20 UTC

This package is not auto-updated.

Last update: 2024-09-20 19:35:10 UTC


README

symfony 框架的 bbcode 解析器包

@待办

  • 文档 (!)
  • app/config.yml 作为配置文件 - 关闭标签 / 更改 YouTube iframe 的大小等。
  • 更多并提高测试质量 (!)

工作

  • 粗体 [b]..[/b] *
  • 斜体 [i]..[/i] *
  • 下划线 ([u]..[/u] - span 样式
  • 颜色 [color=(black/#cccccc)]..[/color] - span 样式
  • URL [url=(http..) target=(_blank/etc)]...[/url] (target 是可选的)
  • 视频 [youtube]youtube-link[/youtube]
  • 图片 img[/img]

安装

composer.json

"require": {
        "forti/bbcode": "v1.0.x"
},
    "repositories": [
        {
            "type": "git",
            "url": "git@github.com:Fortidude/bbcode.git"
        }],

Composer 更新

$ composer update

app/AppKernel.php

public function registerBundles()
    {
        $bundles = array(
        //...
                new Forti\bbcode\FortiBbcodeBundle(),
        //...
    }

就这样!现在你可以在视图中使用 bbcode twig 扩展了

    {{ variable|bbcode }}