Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken headings in Markdown files #1971

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,35 +31,35 @@ es6调用方式
import * as avalon from 'avalon2'
```

###[English tutorials](https://github.com/RubyLouvre/avalon/tree/master/tutorials)
### [English tutorials](https://github.com/RubyLouvre/avalon/tree/master/tutorials)

###[avalon cookbook](https://github.com/RubyLouvre/avalon/blob/2.1.8/avalon%20cookbook.pdf)
### [avalon cookbook](https://github.com/RubyLouvre/avalon/blob/2.1.8/avalon%20cookbook.pdf)

这是基于官网制成的电子书,方便大家离线阅览

###[avalon2官网](http://avalonjs.coding.me/)
### [avalon2官网](http://avalonjs.coding.me/)
这是基于gitbook制作的,对移动端支持很好,大家上班或睡觉时,可以过目一下.

###[avalon2+webpack2手脚架](https://github.com/sayll/avalon-webpack-start)
### [avalon2+webpack2手脚架](https://github.com/sayll/avalon-webpack-start)

###[QuickStart](https://github.com/crazyliuzc/webpack-avalon2-SPA-seed.git)
### [QuickStart](https://github.com/crazyliuzc/webpack-avalon2-SPA-seed.git)
大家期望已久的avalon2+mmRouter+各种组件的综合示例,不断完善中

###[UI库1](http://weeksun23.github.io/AvalonBootstrap/index.html#overview)
### [UI库1](http://weeksun23.github.io/AvalonBootstrap/index.html#overview)

###[UI库2](https://github.com/aLoNeIT/flyUI)
### [UI库2](https://github.com/aLoNeIT/flyUI)

CDN: `https://unpkg.com/[email protected]/dist/avalon.js`
用法见[https://unpkg.com/#/](https://unpkg.com/#/)

###谁在用avalon
### 谁在用avalon

<img src='http://avalonjs.coding.me/styles/logos.jpg' width='639' height='477' />

`欢迎大家提交logo与官网链接`


###超高性能
### 超高性能

<img src="http://avalonjs.coding.me/styles/performance.jpg" width='770' height='451' />

Expand All @@ -75,7 +75,7 @@ CDN: `https://unpkg.com/[email protected]/dist/avalon.js`

thanks http://charts.udpwork.com/

###支持后端渲染
### 支持后端渲染

avalon2.1.5起支持后端渲染,详见[这里](https://github.com/RubyLouvre/avalon-server-render-example)

Expand Down
4 changes: 2 additions & 2 deletions tutorials/lesson01.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#预览
##overview
# 预览
## overview

avalon是一个来自中国的MVVM框架,以良好的浏览器兼容性著称,体积少,性能卓越,简单易用,支持后端渲染,能帮大家快速搞定高度交互的页面。

Expand Down
4 changes: 2 additions & 2 deletions tutorials/lesson02.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#将内容输出到页面
##Output the content to the page
# 将内容输出到页面
## Output the content to the page

与后端模板一样,avalon能将动态的内容放到它们该呆的地方.并且提供多种便捷的方式. 第一种就是双花括号`{{}}`,第二种是`ms-text`属性.如果要输出大段HTML内容,还可以用ms-html

Expand Down
2 changes: 1 addition & 1 deletion tutorials/lesson03.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#VM
# VM

这一节我们介绍avalon的VM。VM即ViewModel,我们所有业务代码都围绕它进行编写,就像后端,所有代码都是以类的形式来编写一样。

Expand Down
4 changes: 2 additions & 2 deletions tutorials/lesson05.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#属性操作
#attributes manipulating
# 属性操作
# attributes manipulating
avalon2与avalon1的属性操作虽然都是使用ms-attr,但用法完全不一样。
avalon2 and avalon1 use `ms-attr` to manipulate attributes,but way of useing is exactly the different.
avalon1是这样操作属性的
Expand Down
4 changes: 2 additions & 2 deletions tutorials/lesson06.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#006样式操作
#006STYLE
# 006样式操作
# 006STYLE
avalon2的ms-css的变革思路与ms-attr一样,将多个操作合并成到一个对象里面处理,因此没有ms-css-name="value",只有ms-css="Object"或ms-css="Array".
avalon2 redesigned `ms-css` in a same way as `ms-attr`,gather all your css values into one single object,so there is `ms-css-name="value"` no more,only `ms-css=Object"` or `ms-css=Array` will work properly.

Expand Down
Loading