You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by su...@apache.org on 2019/12/24 17:15:58 UTC

[incubator-echarts-doc] branch release updated: fix: fix link error. fix apache/incubator-echarts#11896

This is an automated email from the ASF dual-hosted git repository.

sushuang pushed a commit to branch release
in repository https://gitbox.apache.org/repos/asf/incubator-echarts-doc.git


The following commit(s) were added to refs/heads/release by this push:
     new 0367d44  fix: fix link error. fix apache/incubator-echarts#11896
0367d44 is described below

commit 0367d44985a58308210d3a5024026a03fa72120c
Author: 100pah <su...@gmail.com>
AuthorDate: Wed Dec 25 01:15:41 2019 +0800

    fix: fix link error. fix apache/incubator-echarts#11896
---
 en/tutorial/custom-build.md       | 2 +-
 en/tutorial/getting-started.md    | 4 ++--
 zh/tutorial/custom-build.md       | 2 +-
 zh/tutorial/custom-series.md      | 6 +++---
 zh/tutorial/getting-started.md    | 4 ++--
 zh/tutorial/weixin-application.md | 4 ++--
 6 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/en/tutorial/custom-build.md b/en/tutorial/custom-build.md
index 4cd07f1..bdd683e 100644
--- a/en/tutorial/custom-build.md
+++ b/en/tutorial/custom-build.md
@@ -12,7 +12,7 @@ these pre-builds are provided:
 
 We can also build echarts ourselves, which enables to only include the charts and components you needed. You can customize your ECharts build by using one of these approaches:
 
-+ [Online custom build tool](${websitePath}builder.html) is relatively convenient.
++ [Online custom build tool](${websitePath}/builder.html) is relatively convenient.
 + The script `echarts/build/build.js` found in the project is flexible for module selecting, and supports multi-language builds
 + Build ECharts and your project directly by using tools such as [rollup](https://rollupjs.org/), [webpack](https://webpack.js.org//), [browserify](http://browserify.org/)
 
diff --git a/en/tutorial/getting-started.md b/en/tutorial/getting-started.md
index b62ac19..a9e3b20 100644
--- a/en/tutorial/getting-started.md
+++ b/en/tutorial/getting-started.md
@@ -5,11 +5,11 @@
 
 First, install ECharts using one of the following methods:
 
-* Download official source release from [Apache ECharts (incubating) website](${websitePath}download.html). Then [build](https://github.com/apache/incubator-echarts#build) from the source release.
+* Download official source release from [Apache ECharts (incubating) website](${websitePath}/download.html). Then [build](https://github.com/apache/incubator-echarts#build) from the source release.
 
 * Download from [GitHub](https://github.com/apache/incubator-echarts/releases)
 
-* Using npm: `npm install echarts --save`. [Using ECharts with webpack](${websitePath}tutorial.html#Use%20ECharts%20with%20webpack)
+* Using npm: `npm install echarts --save`. [Using ECharts with webpack](${websitePath}/tutorial.html#Use%20ECharts%20with%20webpack)
 
 * Use CDN like [jsDelivr](https://www.jsdelivr.com/package/npm/echarts).
 
diff --git a/zh/tutorial/custom-build.md b/zh/tutorial/custom-build.md
index 987a641..051cb34 100644
--- a/zh/tutorial/custom-build.md
+++ b/zh/tutorial/custom-build.md
@@ -10,7 +10,7 @@
 
 我们也可以自己构建 echarts,能够仅仅包括自己所需要的图表和组件。可以用这几种方式自定义构建:
 
-+ [在线自定义构建](${websitePath}builder.html):比较方便。
++ [在线自定义构建](${websitePath}/builder.html):比较方便。
 + 使用 `echarts/build/build.js` 脚本自定义构建:比在线构建更灵活一点,并且支持多语言。
 + 直接使用构建工具(如 [rollup](https://rollupjs.org/)、[webpack](https://webpack.js.org//)、[browserify](http://browserify.org/))自己构建:也是一种选择。
 
diff --git a/zh/tutorial/custom-series.md b/zh/tutorial/custom-series.md
index 0fe8c98..c345560 100644
--- a/zh/tutorial/custom-series.md
+++ b/zh/tutorial/custom-series.md
@@ -9,7 +9,7 @@ echarts 为什么会要支持 `自定义系列` 呢?echarts 内置支持的图
 **例如,下面的例子使用 custom series 扩展出了 x-range 图:**
 ~[800x500](${galleryViewPath}custom-profile&reset=1&edit=1)
 
-**更多的例子参见:[custom examples](${websitePath}examples.html#chart-type-custom)**
+**更多的例子参见:[custom examples](${websitePath}/examples.html#chart-type-custom)**
 
 下面来介绍开发者怎么使用 [自定义系列(custom series)](option.html#series-custom)。
 
@@ -271,12 +271,12 @@ chart.on('click', {element: 'aaa'}, function (params) {
 <br>
 <h2>(七)自定义矢量图形</h2>
 
-自定义系列能支持使用 [SVG PathData](http://www.w3.org/TR/SVG/paths.html#PathData) 定义矢量路径。从而可以使用矢量图工具中做出的图形。参见:[path](option.html#series-custom.renderItem.return_path),以及例子:[icons](${websitePath}examples/editor.html?c=custom-calendar-icon) 和 [shapes](${websitePath}examples/editor.html?c=custom-gantt-flight)。
+自定义系列能支持使用 [SVG PathData](http://www.w3.org/TR/SVG/paths.html#PathData) 定义矢量路径。从而可以使用矢量图工具中做出的图形。参见:[path](option.html#series-custom.renderItem.return_path),以及例子:[icons](${websitePath}/examples/editor.html?c=custom-calendar-icon) 和 [shapes](${websitePath}/examples/editor.html?c=custom-gantt-flight)。
 
 
 
 
 <br>
 
-**更多的自定义系列的例子参见:[custom examples](${websitePath}examples.html#chart-type-custom)**
+**更多的自定义系列的例子参见:[custom examples](${websitePath}/examples.html#chart-type-custom)**
 
diff --git a/zh/tutorial/getting-started.md b/zh/tutorial/getting-started.md
index 1fd4ad3..d273730 100644
--- a/zh/tutorial/getting-started.md
+++ b/zh/tutorial/getting-started.md
@@ -5,11 +5,11 @@
 
 你可以通过以下几种方式获取 ECharts。
 
-* 从 [Apache ECharts (incubating) 官网下载界面](${websitePath}download.html) 获取官方源码包后构建。
+* 从 [Apache ECharts (incubating) 官网下载界面](${websitePath}/download.html) 获取官方源码包后构建。
 
 * 在 ECharts 的 [GitHub](https://github.com/apache/incubator-echarts/releases) 获取。
 
-*  通过 npm 获取 echarts,`npm install echarts --save`,详见“[在 webpack 中使用 echarts](${websitePath}tutorial.html#%E5%9C%A8%20webpack%20%E4%B8%AD%E4%BD%BF%E7%94%A8%20ECharts)”
+*  通过 npm 获取 echarts,`npm install echarts --save`,详见“[在 webpack 中使用 echarts](${websitePath}/tutorial.html#%E5%9C%A8%20webpack%20%E4%B8%AD%E4%BD%BF%E7%94%A8%20ECharts)”
 
 * 通过 [jsDelivr](https://www.jsdelivr.com/package/npm/echarts) 等 CDN 引入
 
diff --git a/zh/tutorial/weixin-application.md b/zh/tutorial/weixin-application.md
index 2636a4c..68e3d86 100644
--- a/zh/tutorial/weixin-application.md
+++ b/zh/tutorial/weixin-application.md
@@ -20,7 +20,7 @@
 
 其中,`ec-canvas` 是我们提供的组件,其他文件是如何使用该组件的示例。
 
-`ec-canvas` 目录下有一个 `echarts.js`,默认我们会在每次 `echarts-for-weixin` 项目发版的时候替换成最新版的 ECharts。如有必要,可以自行从 ECharts 项目中下载[最新发布版](https://github.com/apache/incubator-echarts/releases),或者从[官网自定义构建](${websitePath}builder.html)以减小文件大小。
+`ec-canvas` 目录下有一个 `echarts.js`,默认我们会在每次 `echarts-for-weixin` 项目发版的时候替换成最新版的 ECharts。如有必要,可以自行从 ECharts 项目中下载[最新发布版](https://github.com/apache/incubator-echarts/releases),或者从[官网自定义构建](${websitePath}/builder.html)以减小文件大小。
 
 ## 引入组件
 
@@ -83,7 +83,7 @@ Page({
 });
 ```
 
-这对于所有 ECharts 图表都是通用的,用户只需要修改上面 `option` 的内容,即可改变图表。`option` 的使用方法参见 [ECharts 配置项文档](${websitePath}option.html)。对于不熟悉 ECharts 的用户,可以参见 [5 分钟上手 ECharts](${websitePath}tutorial.html#5%20%E5%88%86%E9%92%9F%E4%B8%8A%E6%89%8B%20ECharts) 教程。
+这对于所有 ECharts 图表都是通用的,用户只需要修改上面 `option` 的内容,即可改变图表。`option` 的使用方法参见 [ECharts 配置项文档](${websitePath}/option.html)。对于不熟悉 ECharts 的用户,可以参见 [5 分钟上手 ECharts](${websitePath}/tutorial.html#5%20%E5%88%86%E9%92%9F%E4%B8%8A%E6%89%8B%20ECharts) 教程。
 
 完整的例子请参见 [ecomfe/echarts-for-weixin](https://github.com/ecomfe/echarts-for-weixin) 项目。
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org