Skip to content

Latest commit

 

History

History
99 lines (77 loc) · 2.65 KB

readme.zh-CN.md

File metadata and controls

99 lines (77 loc) · 2.65 KB

English | 简体中文

flutter_bbcode_editor

所见即所得的BBCode编辑器。

开发中

当前仍处于开发状态。将来功能特性和API可能发生变动。

截图

cover

[quote][size=4]flutter_bbcode_editor is a WYSIWYG editor based on [/size][size=4][url=https://github.com/singerdmx/flutter-quill]flutter_quill[/url][/size]
[/quote]
[size=4]Made for [/size][@]flutter[/@]

[size=6]Header size 6[/size]

[b]bold[/b]
[i]italic[/i]
[u]underline[/u]
[s]strikethrough[/s]
[color=#087]color[/color]
[backcolor=#5ae]backgroundcolor[/backcolor]

[hr]

[spoiler=Click to expand][size=4]All[/size] [b]formats[/b] can be used in [b][color=#a4b]spoiler[/color][/b]

[list]
[*][color=#e99]unordered[/color] list item 1
[*][color=#e99]unordered[/color] list item 2
[/list]

[hide=1234]Hide area inside spoiler[/hide]
[/spoiler]

[hide]This area is locked until user reply

[u]RIch[/u] text in [backcolor=#9c9]hide[/backcolor] area here

[list=1]
[*]ordered list [color=#4aa]item[/color] 1
[*]ordered list item 2
[/list][/hide]

介绍

用来编辑bbcode的Flutter widget,支持所见即所得

基于flutter_quill

Feature

这些BBCode tag用于TSDM论坛。 可以关掉。

  • BBCode标签
    • 字体 没有计划支持
    • 文字大小 [size] (1~7等级)
    • 文字颜色 [color=$color]
    • 粗体 [b]
    • 斜体 [i]
    • 下划线 [u]
    • 删除线 [s]
    • 背景色 [backcolor=$color]
    • 上标 [sup]
    • 对齐
      • 居左 [align=left]
      • 居中 [align=center]
      • 居右 [align=right]
    • 表情 {:emoji_id:}
    • 链接 [url]
    • 图片 [img]
      • 设置图片大小 [img=$width,$height]$image_url[/img]
    • 折叠区域 [spoiler]
    • 隐藏区域
      • 要求回复 [hide] 用户回复后才显示
      • 积分高于特定值时才显示 [hide=$points] 只有那些积分高于$points的用户能看见
    • 提醒(艾特)用户 [@]$user_name[/@]
    • 有序列表 [list=1]
    • 无序列表 [list]
    • 分隔线 [hr]
    • 表格 [table]
    • 代码块 [code]
    • 引用块 [quote]
  • 源代码模式
  • 导出 导出格式尚未稳定,未来的格式变更可能导致现有的导出数据无法再导入
    • 导出为BBCode
    • 导出为quill delta
  • 导入
    • 导入BBCode
    • 导入quill delta
  • 自定义标签
  • 嵌套的block( 代码块、引用、列表)