Skip to content

Commit 68327c5

Browse files
authored
Merge branch 'master' into develop
2 parents 1622578 + 8bf4b06 commit 68327c5

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

docs/deploy.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ server {
8282

8383
### HTML5 router
8484

85-
When using the HTML5 router, you need to set up redirect rules that redirect all requests to your `index.html`, it's pretty simple when you're using Netlify, populate a `\redirects` file in the docs directory and you're all set:
85+
When using the HTML5 router, you need to set up redirect rules that redirect all requests to your `index.html`, it's pretty simple when you're using Netlify, create a file named `_redirects` in the docs directory, add this snippet to the file and you're all set:
8686

8787
```sh
8888
/* /index.html 200
@@ -134,4 +134,3 @@ frontend:
134134
|----------------|----------------|---------------|
135135
| /<*>.md | /<*>.md | 200 (Rewrite) |
136136
| /<*> | /index.html | 200 (Rewrite) |
137-

docs/more-pages.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Matching routes
1818

1919
```text
2020
docs/README.md => http://domain.com
21-
docs/guide.md => http://domain.com/guide
22-
docs/zh-cn/README.md => http://domain.com/zh-cn/
23-
docs/zh-cn/guide.md => http://domain.com/zh-cn/guide
21+
docs/guide.md => http://domain.com/#/guide
22+
docs/zh-cn/README.md => http://domain.com/#/zh-cn/
23+
docs/zh-cn/guide.md => http://domain.com/#/zh-cn/guide
2424
```
2525

2626
## Sidebar

packages/docsify-server-renderer/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/themes/buble.styl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,12 @@ $sidebar-width = 16rem
3535
color #333
3636
font-weight 400
3737

38+
.markdown-section strong
39+
color #333
40+
font-weight 600
41+
3842
.markdown-section a
3943
color var(--theme-color, $color-primary)
40-
font-weight 400
4144

4245
.markdown-section p, .markdown-section ul, .markdown-section ol
4346
line-height 1.6rem

0 commit comments

Comments
 (0)