Skip to content

Commit

Permalink
Fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
tommy351 committed Feb 7, 2016
1 parent 85962bb commit db82032
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions source/docs/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Initializes a website. If no `folder` is provided, Hexo will set up the website
$ hexo new [layout] <title>
```

Creates a new article. If no `layout` is provided, Hexo will use the `default_layout` from [_config.yml](docs/configuration.html). If the `title` contains spaces, surround it with quotation marks.
Creates a new article. If no `layout` is provided, Hexo will use the `default_layout` from [_config.yml](configuration.html). If the `title` contains spaces, surround it with quotation marks.

## generate

Expand Down Expand Up @@ -81,7 +81,7 @@ Option | Description
$ hexo migrate <type>
```

[Migrates](docs/migration.html) content from other blog systems.
[Migrates](migration.html) content from other blog systems.

## clean

Expand Down
4 changes: 2 additions & 2 deletions source/docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Setting | Description | Default
--- | --- | ---
`url` | The URL of your website |
`root` | The root directory of your website |
`permalink` | The [permalink](docs/permalinks.html) format of articles | `:year/:month/:day/:title/`
`permalink` | The [permalink](permalinks.html) format of articles | `:year/:month/:day/:title/`
`permalink_default` | Default values of each segment in permalink |

{% note info Website in subdirectory %}
Expand Down Expand Up @@ -49,7 +49,7 @@ Setting | Description | Default
`external_link` | Open external links in new tab? | `true`
`filename_case` | Transform filenames to `1` lower case; `2` upper case | `0`
`render_drafts` | Display drafts? | `false`
`post_asset_folder` | Enable the [Asset Folder](docs/asset-folders.html)? | `false`
`post_asset_folder` | Enable the [Asset Folder](asset-folders.html)? | `false`
`relative_link` | Make links relative to the root folder? | `false`
`future` | Display future posts? | `true`
`highlight` | Code block settings |
Expand Down
2 changes: 1 addition & 1 deletion source/docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ The Hexo documentation is open source and you can find the source code on [hexoj

## Reporting Issues

When you encounter some problems when using Hexo, you can find the solutions in [Troubleshooting](docs/troubleshooting.html) or ask me on [GitHub](https://github.com/hexojs/hexo/issues) or [Google Group](https://groups.google.com/group/hexo). If you can't find the answer, please report it on GitHub.
When you encounter some problems when using Hexo, you can find the solutions in [Troubleshooting](troubleshooting.html) or ask me on [GitHub](https://github.com/hexojs/hexo/issues) or [Google Group](https://groups.google.com/group/hexo). If you can't find the answer, please report it on GitHub.

1. Represent the problem in [debug mode](commands.html#Debug_mode).
2. Run `hexo version` and check the version info.
Expand Down
2 changes: 1 addition & 1 deletion source/docs/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
title: Documentation
---
Welcome to the Hexo documentation. If you encounter any problems when using Hexo, have a look at the [troubleshooting guide](docs/troubleshooting.html), raise an issue on [GitHub](https://github.com/hexojs/hexo/issues) or start a topic on the [Google Group](https://groups.google.com/group/hexo).
Welcome to the Hexo documentation. If you encounter any problems when using Hexo, have a look at the [troubleshooting guide](troubleshooting.html), raise an issue on [GitHub](https://github.com/hexojs/hexo/issues) or start a topic on the [Google Group](https://groups.google.com/group/hexo).

## What is Hexo?

Expand Down
2 changes: 1 addition & 1 deletion source/docs/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ You can make use of the official tools provided by Hexo to accelerate developmen

### Publishing

When your plugin is ready, you may consider publishing it to the [plugin list](/plugins) to invite other people to start using it. Publishing your own plugins is very similar to [updating documentation](docs/contributing.html#Updating_Documentation).
When your plugin is ready, you may consider publishing it to the [plugin list](/plugins) to invite other people to start using it. Publishing your own plugins is very similar to [updating documentation](contributing.html#Updating_Documentation).

1. Fork [hexojs/site]
2. Clone the repository to your computer and install dependencies.
Expand Down
6 changes: 3 additions & 3 deletions source/docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Once initialised, here's what your project folder will look like:

### _config.yml

Site [configuration](docs/configuration.html) file. You can configure most settings here.
Site [configuration](configuration.html) file. You can configure most settings here.

### package.json

Expand Down Expand Up @@ -53,12 +53,12 @@ Application data. The [EJS](http://embeddedjs.com/), [Stylus](http://learnboost.

### scaffolds

[Scaffold](docs/writing.html#Scaffolds) folder. When you create a new post, Hexo bases the new file on the scaffold.
[Scaffold](writing.html#Scaffolds) folder. When you create a new post, Hexo bases the new file on the scaffold.

### source

Source folder. This is where you put your site's content. Hexo ignores hidden files and files or folders whose names are prefixed with `_` (underscore) - except the `_posts` folder. Renderable files (e.g. Markdown, HTML) will be processed and put into the `public` folder, while other files will simply be copied.

### themes

[Theme](docs/themes.html) folder. Hexo generates a static website by combining the site contents with the theme.
[Theme](themes.html) folder. Hexo generates a static website by combining the site contents with the theme.
4 changes: 2 additions & 2 deletions source/docs/themes.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Theme configuration file. Modifying this doesn't require a server restart.

### languages

Language folder. See [internationalization (i18n)](docs/internationalization.html) for more info.
Language folder. See [internationalization (i18n)](internationalization.html) for more info.

### layout

Expand All @@ -32,7 +32,7 @@ See [templates](templates.html) for more info.

### scripts

Script folder. Hexo will automatically load all JavaScript files in this folder during initialization. For more info, see [plugins](docs/plugins.html).
Script folder. Hexo will automatically load all JavaScript files in this folder during initialization. For more info, see [plugins](plugins.html).

### source

Expand Down
4 changes: 2 additions & 2 deletions source/zh-tw/docs/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ $ hexo init [folder]
$ hexo new [layout] <title>
```

建立一篇新的文章。如果沒有設定 `layout` 的話,則會使用 [_config.yml](docs/configuration.html) 中的 `default_layout` 設定代替。如果標題包含空格的話,請使用引號括起來。
建立一篇新的文章。如果沒有設定 `layout` 的話,則會使用 [_config.yml](configuration.html) 中的 `default_layout` 設定代替。如果標題包含空格的話,請使用引號括起來。

## generate

Expand Down Expand Up @@ -81,7 +81,7 @@ $ hexo render <file> ...
$ hexo migrate <type>
```

從其他系統 [轉移內容](docs/migration.html)
從其他系統 [轉移內容](migration.html)

## clean

Expand Down
4 changes: 2 additions & 2 deletions source/zh-tw/docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ Hexo 文件開放原始碼,您可以在 [hexojs/site] 找到原始碼。

## 回報問題

當您在使用 Hexo 時遭遇問題,您可試著在 [解決問題](docs/troubleshooting.html) 中尋找解答,或是在 [GitHub](https://github.com/hexojs/hexo/issues)[Google Group](https://groups.google.com/group/hexo) 詢問。詢問時請務必附上以下資訊:
當您在使用 Hexo 時遭遇問題,您可試著在 [解決問題](troubleshooting.html) 中尋找解答,或是在 [GitHub](https://github.com/hexojs/hexo/issues)[Google Group](https://groups.google.com/group/hexo) 詢問。詢問時請務必附上以下資訊:

1.[除錯模式](docs/commands.html#除錯模式) 再執行一次。
1.[除錯模式](commands.html#除錯模式) 再執行一次。
2. 執行 `hexo vesion` 並檢查版本資訊。
3. 把除錯資訊和版本資訊都貼到 GitHub。

Expand Down
2 changes: 1 addition & 1 deletion source/zh-tw/docs/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Hexo 有強大的外掛系統,使您能輕鬆擴展功能而不用修改核心

### 發佈

當您完成外掛後,可以考慮將它發佈到 [外掛列表](/plugins),讓更多人能夠使用您的外掛。發佈外掛的步驟和 [更新文件](docs/contributing.html#更新文件) 非常類似。
當您完成外掛後,可以考慮將它發佈到 [外掛列表](/plugins),讓更多人能夠使用您的外掛。發佈外掛的步驟和 [更新文件](contributing.html#更新文件) 非常類似。

1. Fork [hexojs/site]
2. 把檔案庫(repository)複製到電腦上,並安裝相依套件。
Expand Down

0 comments on commit db82032

Please sign in to comment.