Browse Source

Fix document links

pull/633/head
afc163 9 years ago
parent
commit
2e010aea39
  1. 2
      CHANGELOG.md
  2. 2
      README-zh_CN.md
  3. 6
      README.md
  4. 7
      docs/getting-started.md
  5. 2
      docs/install.md
  6. 2
      docs/introduce.md

2
CHANGELOG.md

@ -58,7 +58,7 @@
- 优先使用苹方字体。 - 优先使用苹方字体。
- 统一 size 属性的可选值为 `small` `default` `large` - 统一 size 属性的可选值为 `small` `default` `large`
- 开始初步补充[测试用例](https://github.com/ant-design/ant-design/tree/1a3a19793c0791201666fdcf0dbd12a30fad4be0/tests)。 - 开始初步补充[测试用例](https://github.com/ant-design/ant-design/tree/1a3a19793c0791201666fdcf0dbd12a30fad4be0/tests)。
- 提供主色系更换的方案。[#384](https://github.com/ant-design/ant-design/issues/384) - 提供主色系更换的[方案](https://github.com/ant-tool/xtool/tree/master/examples/customize-antd-theme)。[#384](https://github.com/ant-design/ant-design/issues/384)
- 添加[色彩换算工具](http://ant.design/spec/colors#色彩换算工具)。 - 添加[色彩换算工具](http://ant.design/spec/colors#色彩换算工具)。
- 添加布局和导航规范,以及[常用布局](http://ant.design/spec/layout/)。 - 添加布局和导航规范,以及[常用布局](http://ant.design/spec/layout/)。
- 文档支持标题和演示的锚点,方便分享文档和演示代码。 - 文档支持标题和演示的锚点,方便分享文档和演示代码。

2
README-zh_CN.md

@ -48,7 +48,7 @@ npm install antd
- [首页](http://ant.design/) - [首页](http://ant.design/)
- [React UI 库](http://ant.design/docs/introduce) - [React UI 库](http://ant.design/docs/introduce)
- [构建调试工具](https://github.com/ant-design/antd-bin) - [构建调试工具](https://github.com/ant-tool/xtool/)
- [开发计划](https://github.com/ant-design/ant-design/issues/9) - [开发计划](https://github.com/ant-design/ant-design/issues/9)
- [修改记录](CHANGELOG.md) - [修改记录](CHANGELOG.md)
- [React 组件](http://react-component.github.io/) - [React 组件](http://react-component.github.io/)

6
README.md

@ -44,12 +44,12 @@ Normal browsers and Internet Explorer 8+.
- [Home page](http://ant.design/) - [Home page](http://ant.design/)
- [React UI library](http://ant.design/docs/introduce) - [React UI library](http://ant.design/docs/introduce)
- [Build/Debug tools](https://github.com/ant-design/antd-bin) - [Build/Debug tools](https://github.com/ant-tool/xtool/)
- [Roadmap](https://github.com/ant-design/ant-design/issues/9) - [Roadmap](https://github.com/ant-design/ant-design/issues/9)
- [ChangeLog](CHANGELOG.md) - [ChangeLog](CHANGELOG.md)
- [React components](http://react-component.github.io/) - [React components](http://react-component.github.io/)
- [React style guide](https://github.com/react-component/react-component.github.io/blob/master/docs/en-US/component-code-style.md) - [React style guide](https://github.com/react-component/react-component.github.io/blob/master/docs/zh-cn/component-code-style.md)
- [React component design guide](https://github.com/react-component/react-component.github.io/blob/master/docs/en-US/component-design.md) - [React component design guide](https://github.com/react-component/react-component.github.io/blob/master/docs/zh-cn/component-design.md)
- [Developer Instruction](https://github.com/ant-design/ant-design/wiki/%E7%BD%91%E7%AB%99%E5%92%8C%E7%BB%84%E4%BB%B6%E5%BC%80%E5%8F%91%E8%AF%B4%E6%98%8E) - [Developer Instruction](https://github.com/ant-design/ant-design/wiki/%E7%BD%91%E7%AB%99%E5%92%8C%E7%BB%84%E4%BB%B6%E5%BC%80%E5%8F%91%E8%AF%B4%E6%98%8E)
- [Versioning Release Note](https://github.com/ant-design/ant-design/wiki/%E7%89%88%E6%9C%AC%E5%8F%91%E5%B8%83%E6%B5%81%E7%A8%8B) - [Versioning Release Note](https://github.com/ant-design/ant-design/wiki/%E7%89%88%E6%9C%AC%E5%8F%91%E5%B8%83%E6%B5%81%E7%A8%8B)

7
docs/getting-started.md

@ -27,7 +27,7 @@ Ant Design React 致力于提供给程序员**愉悦**的开发体验。
$ npm install antd-init -g $ npm install antd-init -g
``` ```
[更多使用说明](https://github.com/ant-design/antd-bin#使用说明)。 [更多使用说明](https://github.com/ant-tool/xtool/#使用说明)。
### 2. 创建一个项目 ### 2. 创建一个项目
@ -131,8 +131,11 @@ Ant Design React 支持所有的现代浏览器和 IE8+。
## 自行构建 ## 自行构建
如果想自己维护工作流,我们推荐使用 [webpack](http://webpack.github.io/) 进行构建和调试,可以参考我们所使用的 [webpack 配置](https://github.com/ant-design/antd-build/blob/master/lib/webpack.common.config.js)。 如果想自己维护工作流,我们推荐使用 [webpack](http://webpack.github.io/) 进行构建和调试,可以参考我们所使用的 [webpack 配置](https://github.com/ant-tool/atool-build/blob/master/src/getWebpackCommonConfig.js)。
### 改变主色系
- [演示](https://github.com/ant-tool/xtool/tree/master/examples/customize-antd-theme)。
## 小甜点 ## 小甜点

2
docs/install.md

@ -51,7 +51,7 @@ $ npm install antd-bin --save-dev
} }
``` ```
> 更多[使用方式](https://github.com/ant-design/antd-bin/)。 > 更多[使用方式](https://github.com/ant-tool/xtool/)。
<style> <style>
.versions { .versions {

2
docs/introduce.md

@ -65,7 +65,7 @@ import 'antd/lib/index.css'; // 样式需要在入口处引用一次
- [首页](http://ant.design/) - [首页](http://ant.design/)
- [文档和组件](http://ant.design/docs/introduce) - [文档和组件](http://ant.design/docs/introduce)
- [构建调试工具](https://github.com/ant-design/antd-bin) - [构建调试工具](https://github.com/ant-tool/xtool/)
- [开发计划](https://github.com/ant-design/ant-design/issues/9) - [开发计划](https://github.com/ant-design/ant-design/issues/9)
- [React 模块](http://react-component.github.io/) - [React 模块](http://react-component.github.io/)
- [React 代码规范](https://github.com/react-component/react-component.github.io/blob/master/docs/zh-cn/component-code-style.md) - [React 代码规范](https://github.com/react-component/react-component.github.io/blob/master/docs/zh-cn/component-code-style.md)

Loading…
Cancel
Save