zh: add universal transition and group id
20 files changed
tree: f407e0d7557a42b8fd3c16e949b8c6a900173e10
  1. .github/
  2. asset/
  3. asset-src/
  4. build/
  5. config/
  6. dep/
  7. editor/
  8. en/
  9. public/
  10. slides/
  11. src/
  12. tool/
  13. zh/
  14. .asf.yaml
  15. .babelrc
  16. .gitattributes
  17. .gitignore
  18. _config.yml
  19. build.js
  20. google2e051bafb7b53dc1.html
  21. LICENSE
  22. package-lock.json
  23. package.json
  24. README.md
  25. server.js
README.md

About

This project is part of the source of The Apache ECharts Official Website. See echarts-website for more details of the building process.

Online Docs

Development

Document content development

Do not need other project.

npm run dev

It will:

  • Start a static server
  • Watch doc site src change and rebuild.
  • Watch doc markdown change and rebuild.

Tips about writing doc

Global variables can be used in doc:

  • galleryViewPath
  • galleryEditorPath
  • websitePath

For example: Embed a example in doc:

~[700x300](${galleryViewPath}doc-example/aria-pie&edit=1&reset=1)

Provide a example link in doc:

[vertically scrollable legend](${galleryEditorPath}pie-legend&edit=1&reset=1)

Provide a website link in doc:

[Apache ECharts website](${websitePath}/en/download.html)

Reference of option

A ~ can be used to refer to a option item in the same doc. For example:

[xAxis.name](~xAxis.name)

If intending to reference an anchor in different doc, it can be:

[itemStyle](option.html#series.itemStyle)

Notes:

  1. Formatter will treat {{use}} as a block. So don't use it inline.
// Good
Some description
{{ use: partial-xxx }}
Some other description
// Bad
Some description about {{ use: partial-inline-xxx }}
  1. Don't use to complex inline {{if}} {{else}} structure. It will make reading and patching between different languages harder.
// Good
{{ if: ${prefix} !== '#' }}
表示同一层级的节点的颜色饱和度 选取范围。
{{ else }}
本系列默认的节点的颜色饱和度 选取范围。
{{ /if }}
数值范围 0 ~ 1

// Bad
{{ if: ${prefix} !== '#' }}表示同一层级的节点的{{ else }}本系列默认的{{ /if }} 颜色饱和度 选取范围。数值范围 0 ~ 1

// Good
{{ if: ${prefix} !== '#' }}
It indicates the range of saturation (color alpha) for nodes in a level.
{{ else }}
It indicates the range of saturation (color alpha) for nodes  of the series.
{{ /if }}
The range of values is 0 ~ 1.

// Bad
It indicates the range of saturation (color alpha) {{ if: ${prefix} !== '#' }}for nodes in a level {{ else }} of the series{{ /if }}. The range of values is 0 ~ 1.

Format Option Docs

Option docs needs to be formatted before commit.

Run

npm run format

Make sure have a double review on the git diff after formatted.

Sync docs between different languages.

After you finished editing doc of one language. You can use following script to sync it to another language.

# zh to en
node tool/patchLanguage --from=zh --to=en
# en to zh
node tool/patchLanguage --from=en --to=zh

Sync will move the structure. It will make editing of other languages much easier.

Again make sure have a double review on the git diff after syncing.