Compare commits

..
5 Commits
Author SHA1 Message Date
qingwei.li 440635aeeb -> v1.0.1 2016-12-08 21:24:05 +08:00
qingwei.li a8cc8e46cd bump 1.0.1 2016-12-08 21:23:38 +08:00
qingwei.li 626227be4d Update changelog 2016-12-08 21:22:33 +08:00
qingwei.li c4f02027a8 Fix img style 2016-12-08 21:20:37 +08:00
qingwei.li 8f3eb17dbf Update doc 2016-12-08 21:18:01 +08:00
8 changed files with 10 additions and 18 deletions
+4
View File
@@ -1,3 +1,7 @@
## 1.0.1
### Bug fixes
- `img` style
## 1.0.0
## Features
- Support hash router
+2 -2
View File
@@ -9,8 +9,8 @@
</head>
<body>
<nav>
<a href="/">En</a>
<a href="/zh-cn">中文</a>
<a href="#/">En</a>
<a href="#/zh-cn">中文</a>
</nav>
<div id="app"></div>
</body>
-10
View File
@@ -221,13 +221,3 @@ Sidebar 开关按钮
```html
<script src="/lib/docsify.js" data-router></script>
```
## FAQ
### 为什么是 `404.html` 而不用 `index.html`
docsify 想要实现的是用最简单的方式 **动态渲染内容**
例如我有两个文档分别为 `README.md``guide.md`,如果我用 `index.html` 作为文件名,`README.md` 可以被正确的渲染因为我们已经规定它为首页文件,但是如果我们访问 `my-domain.com/guide` 想要得到的结果是 `guide.md` 的内容,它将无法工作,因为目录下并不存在一个 `guide.html` 的文件。
但是 GitHub Pages 服务器找不到资源, 就会回退并渲染 `404.html` 文件。😄
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "docsify",
"version": "1.0.0",
"version": "1.0.1",
"description": "A magical documentation generator.",
"main": "lib/docsify.js",
"files": [
-2
View File
@@ -24,8 +24,6 @@ body {
img {
max-width: 100%;
display: block;
margin: 0 auto;
}
/* navbar */