pull/1078/head
Cierra_Runis 2 years ago committed by GitHub
parent 0e5556424d
commit 13f0a2c702
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      README.md
  2. 24
      doc_cn.md

@ -383,10 +383,10 @@ The translation file is located at [toolbar.i18n.dart](lib/src/translations/tool
Having your document stored in Quill Delta format is sometimes not enough. Often you'll need to convert
it to other formats such as HTML in order to publish it, or send an email. One option is to use
[vsc_quill_delta_to_html](https://pub.dev/packages/vsc_quill_delta_to_html) to convert your document
to HTML. This package has full support for all Quill operations - including images, videos, formulas,
tables, and mentions. Conversion can be performed in vanilla Dart (i.e., server-side or CLI) or in Flutter.
to HTML. This package has full support for all Quill operations - including images, videos, formulas,
tables, and mentions. Conversion can be performed in vanilla Dart (i.e., server-side or CLI) or in Flutter.
It is a complete Dart part of the popular and mature [quill-delta-to-html](https://www.npmjs.com/package/quill-delta-to-html)
Typescript/Javascript package.
Typescript/Javascript package.
## Sponsors

@ -187,7 +187,7 @@ QuillToolbar.basic(
若需要图片、视频、公式块的支持,请查看独立库 [`flutter_quill_extensions`](https://pub.dev/packages/flutter_quill_extensions)
### 根据 `flutter_quill_extensions` 使用自定义嵌入块
### 根据 `flutter_quill_extensions` 使用图片、视频、公式等自定义嵌入块
```dart
import 'package:flutter_quill_extensions/flutter_quill_extensions.dart';
@ -355,7 +355,7 @@ QuillToolbar(locale: Locale('fr'), ...)
QuillEditor(locale: Locale('fr'), ...)
```
目前,可提供以下 24 种语言环境的翻译:
目前,可提供以下 25 种语言环境的翻译:
* `Locale('en')`
* `Locale('ar')`
@ -363,6 +363,7 @@ QuillEditor(locale: Locale('fr'), ...)
* `Locale('de')`
* `Locale('da')`
* `Locale('fr')`
* `Locale('he')`
* `Locale('zh', 'cn')`
* `Locale('zh', 'hk')`
* `Locale('ko')`
@ -384,20 +385,23 @@ QuillEditor(locale: Locale('fr'), ...)
#### 贡献翻译
翻译文件位于 [toolbar.i18n.dart](lib/src/translations/toolbar.i18n.dart)
翻译文件位于 [toolbar.i18n.dart](lib/src/translations/toolbar.i18n.dart)
随意贡献你自己的翻译,只需复制英文翻译映射并将值替换为你的翻译即可
随意贡献你自己的翻译,只需复制英文翻译映射并将值替换为你的翻译即可
然后打开一个拉取请求,这样每个人都可以从你的翻译中受益!
---
### 转化至 HTML
## 帮助
将你的文档转为 `Quill Delta` 格式有时还不够,通常你需要将其转化为其他如 `HTML` 格式来分发他,或作为邮件发出
<a href="https://bulletjournal.us/home/index.html">
<img src=
"https://user-images.githubusercontent.com/122956/72955931-ccc07900-3d52-11ea-89b1-d468a6e2aa2b.png"
width="150px" height="150px"></a>
一个方案是使用 [vsc_quill_delta_to_html](https://pub.dev/packages/vsc_quill_delta_to_html) `Flutter` 包来转化至 `HTML` 格式。此包支持所以的 `Quill` 操作,包含图片、视频、公式、表格和注释
转化过程可以在 `vanilla Dart` 如服务器端或 `CLI` 执行,也可在 `Flutter` 中执行
其是流行且成熟的 [quill-delta-to-html](https://www.npmjs.com/package/quill-delta-to-html) `Typescript/Javascript` 包的 `Dart` 部分
---
## 赞助

Loading…
Cancel
Save