Skip to content

Commit c27e8d3

Browse files
committed
chore: init
0 parents  commit c27e8d3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+21570
-0
lines changed

.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Dependencies
2+
/node_modules
3+
4+
# Production
5+
/build
6+
7+
# Generated files
8+
.docusaurus
9+
.cache-loader
10+
11+
# Misc
12+
.DS_Store
13+
.env.local
14+
.env.development.local
15+
.env.test.local
16+
.env.production.local
17+
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*

LICENSE

Lines changed: 212 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Apache ECharts APIs Docs
2+
3+
![LICENSE](https://badgen.net/github/license/wang1212/echarts-api-docs)
4+
![LAST COMMIT](https://badgen.net/github/last-commit/wang1212/echarts-api-docs?label=last%20update)
5+
6+
![Banner](./static/img/facebook_cover_photo_2.png)
7+
8+
This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.
9+
10+
### Installation
11+
12+
```bash
13+
$ npm install
14+
```
15+
16+
### Local Development
17+
18+
```bash
19+
$ npm run start
20+
```
21+
22+
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
23+
24+
### Build
25+
26+
```bash
27+
$ npm run build
28+
```
29+
30+
This command generates static content into the `build` directory and can be served using any static contents hosting service.
31+
32+
## License
33+
34+
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.

README.zh-CN.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Apache ECharts APIs 文档
2+
3+
![LICENSE](https://badgen.net/github/license/wang1212/echarts-api-docs)
4+
![LAST COMMIT](https://badgen.net/github/last-commit/wang1212/echarts-api-docs?label=last%20update)
5+
6+
![Banner](./static/img/facebook_cover_photo_2.png)
7+
8+
该网站使用 [Docusaurus 2](https://docusaurus.io/) 构建, 一个现代的静态站点生成器。
9+
10+
### 安装
11+
12+
```bash
13+
$ npm install
14+
```
15+
16+
### 本地开发
17+
18+
```bash
19+
$ npm run start
20+
```
21+
22+
此命令启动本地开发服务器并打开浏览器窗口。大多数更改都会实时反映,而无需重新启动服务器。
23+
24+
### 构建
25+
26+
```bash
27+
$ npm run build
28+
```
29+
30+
此命令将静态内容生成到 `build` 目录中,并且可以使用任何静态内容托管服务提供服务。
31+
32+
## 许可证
33+
34+
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="知识共享许可协议" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br />本作品采用<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议</a>进行许可。

babel.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
3+
};
93.9 KB
Loading

blog/2021-08-26-welcome/index.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
slug: welcome
3+
title: Welcome
4+
authors:
5+
- wang1212
6+
tags:
7+
- hello
8+
---
9+
10+
![logo](./linkedin_banner_image_2.png)
11+
12+
首次发布。
3.27 KB
Loading

blog/authors.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
wang1212:
2+
name: wang1212
3+
title: Maintainer
4+
url: https://github.com/wang1212
5+
image_url: https://github.com/wang1212.png

docs/echarts/api/_category_.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"label": "ECharts APIs",
3+
"position": 2,
4+
"collapsed": false,
5+
"link": {
6+
"type": "generated-index",
7+
"description": " "
8+
}
9+
}

0 commit comments

Comments
 (0)