返回介绍

BBCode plugin

发布于 2019-05-06 06:50:27 字数 3208 浏览 1047 评论 0 收藏 0

This plugin makes it possible to edit BBCode in a WYSIWYG style by converting tags like [b] into <strong> and then back, when user submits the content.

You will need to sacrifice quite a lot of TinyMCE’s functionality to use this plugin properly, since BBCode format doesn’t support the whole HTML specification.

Type: String

Example
tinymce.init({
  selector: "textarea",  // change this value according to your HTML
  plugins: "bbcode"
});

Options

bbcode_dialect

This option allows you to specify the BBCode dialect. We only support PunBB at the moment but hope to add more dialects in the future. Suported tags are listed in the table below:

BBCodeDescriptionHTML equivalent
[b]...[/b]Bold text<strong>...</strong>
[i]...[/i]Italicize text<em>...</em>
[u]...[/u]Underline text<u>...</u>
[url=...]...[/url]Link<a href="...">...</a>
[img]...[/img]Image<img src="..." />
[color=...]...[/color]Color text<font color="...">...</font>
[code]...[/code]Code<span class="codeStyle">...</span>
[quote]...[/quote]Quote<span class="quoteStyle">...</span>
\nNewline<br />

When using PunBB dialect, codeStyle and quoteStyle will be converted to [code] and [quote] correspondingly.

Type: String

Default Value: "punbb"

Example
tinymce.init({
  selector: "textarea",  // change this value according to your HTML
  plugins: "bbcode",
  bbcode_dialect: "punbb"
});

Live example

TinyMCE HTML JS Edit on CodePen

<textarea id="bbcode">
  <p>Press the <b><></b> (Source code) button to see the content output in <em>bbcode</em> format.</p>
  <p><b>Example bold text.</b></p>
  <p><i>Example italic text.</i></p>
</textarea>
tinymce.init({
  selector: 'textarea#bbcode',
  height: 200,
  plugins: 'bbcode code',
  toolbar: 'undo redo | bold italic underline | code',
  content_css: [
    '//fonts.googleapis.com/css?family=Lato:300,300i,400,400i',
    '//www.tiny.cloud/css/codepen.min.css'
  ]
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文