Skip to content

Commit

Permalink
docs: clarify theme config files in code blocks (close #2533) (#2534)
Browse files Browse the repository at this point in the history
  • Loading branch information
peteruithoven committed Aug 25, 2020
1 parent e8afd1e commit 8999aba
Show file tree
Hide file tree
Showing 10 changed files with 47 additions and 13 deletions.
8 changes: 8 additions & 0 deletions packages/docs/docs/theme/default-theme-config.md
Expand Up @@ -86,6 +86,7 @@ module.exports = {
These links can also be dropdown menus if you provide an array of `items` instead of a `link`:

```js
// .vuepress/config.js
module.exports = {
themeConfig: {
nav: [
Expand All @@ -105,6 +106,7 @@ module.exports = {
You can also have sub groups inside a dropdown by having nested items:

```js
// .vuepress/config.js
module.exports = {
themeConfig: {
nav: [
Expand Down Expand Up @@ -177,6 +179,7 @@ sidebarDepth: 2
The sidebar only displays links for headers in the current active page. You can display all header links for every page with `themeConfig.displayAllHeaders: true`:

``` js
// .vuepress/config.js
module.exports = {
themeConfig: {
displayAllHeaders: true // Default: false
Expand All @@ -189,6 +192,7 @@ module.exports = {
By default, the nested header links and the hash in the URL are updated as the user scrolls to view the different sections of the page. This behavior can be disabled with the following theme config:

``` js
// .vuepress/config.js
module.exports = {
themeConfig: {
activeHeaderLinks: false, // Default: true
Expand Down Expand Up @@ -346,6 +350,7 @@ sidebar: false
You can disable the built-in search box with `themeConfig.search: false`, and customize how many suggestions will be shown with `themeConfig.searchMaxSuggestions`:

``` js
// .vuepress/config.js
module.exports = {
themeConfig: {
search: false,
Expand Down Expand Up @@ -383,6 +388,7 @@ If you need full text search, you can use [Algolia Search](#algolia-search).
The `themeConfig.algolia` option allows you to use [Algolia DocSearch](https://community.algolia.com/docsearch/) to replace the simple built-in search. To enable it, you need to provide at least `apiKey` and `indexName`:

``` js
// .vuepress/config.js
module.exports = {
themeConfig: {
algolia: {
Expand All @@ -404,6 +410,7 @@ For more options, check out [Algolia DocSearch’s documentation](https://github
You can define a placeholder for the search box by adding the `searchPlaceholder` attribute:

``` js
// .vuepress/config.js
module.exports = {
themeConfig: {
searchPlaceholder: 'Search...'
Expand All @@ -416,6 +423,7 @@ module.exports = {
The `themeConfig.lastUpdated` option allows you to get the UNIX timestamp(ms) of each file’s last `git` commit, and it will also display at the bottom of each page in an appropriate format:

``` js
// .vuepress/config.js
module.exports = {
themeConfig: {
lastUpdated: 'Last Updated', // string | boolean
Expand Down
7 changes: 4 additions & 3 deletions packages/docs/docs/theme/inheritance.md
Expand Up @@ -28,6 +28,7 @@ For now theme inheritance doesn’t support high-order inheritance, that means,
Suppose you want to create a theme inherited from the default theme, you only need to configure the [extend](./option-api.md#extend) option in your theme configuration:

```js
// .vuepress/theme/index.js
module.exports = {
extend: '@vuepress/theme-default'
}
Expand Down Expand Up @@ -79,7 +80,7 @@ module.exports = {
The child theme can edit the options of plugin in the following ways:

```js
// themePath/index.js
// .vuepress/theme/index.js
module.exports = {
plugins: [
['@vuepress/search', {
Expand All @@ -92,7 +93,7 @@ module.exports = {
Child theme can even disable it:

```js
// themePath/index.js
// .vuepress/theme/index.js
module.exports = {
plugins: [
['@vuepress/search', false]
Expand Down Expand Up @@ -160,7 +161,7 @@ This way, you can "tamper" with some part of an atomic theme.
You can use `@parent-theme` to access the root path of the parent theme. The following example shows creating a layout component with the same name in a child theme and using slots in the parent theme. [@vuepress/theme-vue](https://github.com/vuejs/vuepress/tree/master/packages/%40vuepress/theme-vue) is created in this way.

```vue
<!-- themePath/components/Foo.vue -->
<!-- .vuepress/theme/components/Foo.vue -->
<template>
<ParentLayout>
<Foo #foo/>
Expand Down
7 changes: 5 additions & 2 deletions packages/docs/docs/theme/option-api.md
Expand Up @@ -7,13 +7,15 @@ metaTitle: Configuration | Theme
As with plugins, the theme configuration file `themeEntry` should export a `plain JavaScript object`(`#1`). If the plugin needs to take options, it can be a function that exports a plain object(`#2`). The function will be called with the `siteConfig.themeConfig` as the first argument, along with [ctx](../plugin/context-api.md) which provides some compile-time metadata.

``` js
// .vuepress/theme/index.js
// #1
module.exports = {
// ...
}
```

``` js
// .vuepress/theme/index.js
// #2
module.exports = (themeConfig, ctx) => {
return {
Expand Down Expand Up @@ -68,6 +70,7 @@ HTML template path used in `build` mode, default template see [here](https://git
- Default: undefined

```js
// .vuepress/theme/index.js
module.exports = {
extend: '@vuepress/theme-default'
}
Expand All @@ -86,7 +89,7 @@ VuePress provides the ability to inherit one theme from another. VuePress will f
- Default: undefined

```js
// themePath/index.js
// .vuepress/theme/index.js
module.exports = {
globalLayout: '/path/to/your/global/vue/sfc'
}
Expand All @@ -97,7 +100,7 @@ Global layout component is a component responsible for the global layout strateg
For example, when you want to set a global header and footer for your theme, you can do this:

```vue
<!-- themePath/layouts/GlobalLayout.vue -->
<!-- .vuepress/theme/layouts/GlobalLayout.vue -->
<template>
<div id="global-layout">
<header><h1>Header</h1></header>
Expand Down
5 changes: 5 additions & 0 deletions packages/docs/docs/theme/using-a-theme.md
Expand Up @@ -7,6 +7,7 @@ Using a theme is almost the same as using a plugin.
Themes can be published on npm in raw Vue SFC format as `vuepress-theme-xxx`.

``` js
// .vuepress/config.js
module.exports = {
theme: 'vuepress-theme-xx'
}
Expand All @@ -17,6 +18,7 @@ module.exports = {
If you prefix the theme with `vuepress-theme-`, you can use a shorthand to leave out that prefix:

``` js
// .vuepress/config.js
module.exports = {
theme: 'xxx'
}
Expand All @@ -25,6 +27,7 @@ module.exports = {
Same with:

``` js
// .vuepress/config.js
module.exports = {
theme: 'vuepress-theme-xxx'
}
Expand All @@ -33,6 +36,7 @@ module.exports = {
This also works with [Scoped Packages](https://docs.npmjs.com/misc/scope):

``` js
// .vuepress/config.js
module.exports = {
theme: '@org/vuepress-theme-xxx', // or an official theme: '@vuepress/theme-xxx'
}
Expand All @@ -41,6 +45,7 @@ module.exports = {
Shorthand:

``` js
// .vuepress/config.js
module.exports = {
theme: '@org/xxx', // or an official theme: '@vuepress/xxx'
}
Expand Down
1 change: 1 addition & 0 deletions packages/docs/docs/theme/writing-a-theme.md
Expand Up @@ -104,6 +104,7 @@ Each layout component may render distinct pages. To apply some global UI (for ex
You can apply some plugins to the theme via `theme/index.js`.

```js
// .vuepress/theme/index.js
module.exports = {
plugins: [
['@vuepress/pwa', {
Expand Down
9 changes: 8 additions & 1 deletion packages/docs/docs/zh/theme/default-theme-config.md
Expand Up @@ -83,6 +83,7 @@ module.exports = {
当你提供了一个 `items` 数组而不是一个单一的 `link` 时,它将显示为一个 `下拉列表`

```js
// .vuepress/config.js
module.exports = {
themeConfig: {
nav: [
Expand All @@ -102,6 +103,7 @@ module.exports = {
此外,你还可以通过嵌套的 `items` 来在 `下拉列表` 中设置分组:

```js
// .vuepress/config.js
module.exports = {
themeConfig: {
nav: [
Expand Down Expand Up @@ -174,6 +176,7 @@ sidebarDepth: 2
默认情况下,侧边栏只会显示由当前活动页面的标题(headers)组成的链接,你可以将 `themeConfig.displayAllHeaders` 设置为 `true` 来显示所有页面的标题链接:

``` js
// .vuepress/config.js
module.exports = {
themeConfig: {
displayAllHeaders: true // 默认值:false
Expand All @@ -186,6 +189,7 @@ module.exports = {
默认情况下,当用户通过滚动查看页面的不同部分时,嵌套的标题链接和 URL 中的 Hash 值会实时更新,这个行为可以通过以下的配置来禁用:

``` js
// .vuepress/config.js
module.exports = {
themeConfig: {
activeHeaderLinks: false, // 默认值:true
Expand Down Expand Up @@ -338,6 +342,7 @@ sidebar: false
你可以通过设置 `themeConfig.search: false` 来禁用默认的搜索框,或是通过 `themeConfig.searchMaxSuggestions` 来调整默认搜索框显示的搜索结果数量:

``` js
// .vuepress/config.js
module.exports = {
themeConfig: {
search: false,
Expand All @@ -350,7 +355,7 @@ module.exports = {

```yaml
---
tags:
tags:
- 配置
- 主题
- 索引
Expand All @@ -375,6 +380,7 @@ search: false
你可以通过 `themeConfig.algolia` 选项来用 [Algolia 搜索](https://community.algolia.com/docsearch/) 替换内置的搜索框。要启用 Algolia 搜索,你需要至少提供 `apiKey``indexName`

```js
// .vuepress/config.js
module.exports = {
themeConfig: {
algolia: {
Expand All @@ -396,6 +402,7 @@ module.exports = {
你可以通过 `themeConfig.lastUpdated` 选项来获取每个文件最后一次 `git` 提交的 UNIX 时间戳(ms),同时它将以合适的日期格式显示在每一页的底部:

``` js
// .vuepress/config.js
module.exports = {
themeConfig: {
lastUpdated: 'Last Updated', // string | boolean
Expand Down
8 changes: 4 additions & 4 deletions packages/docs/docs/zh/theme/inheritance.md
Expand Up @@ -27,7 +27,7 @@
假设你想创建一个继承自 VuePress 默认主题的派生主题,你只需要在你的主题配置中配置 [extend](./option-api.md#extend) 选项:

```js
// themePath/index.js
// .vuepress/theme/index.js
module.exports = {
extend: '@vuepress/theme-default'
}
Expand Down Expand Up @@ -79,7 +79,7 @@ module.exports = {
那么子主题可以通过如下方式来修改该插件的默认值:

```js
// themePath/index.js
// .vuepress/theme/index.js
module.exports = {
plugins: [
['@vuepress/search', {
Expand All @@ -92,7 +92,7 @@ module.exports = {
也可以选择禁用它:

```js
// themePath/index.js
// .vuepress/theme/index.js
module.exports = {
plugins: [
['@vuepress/search', false]
Expand Down Expand Up @@ -156,7 +156,7 @@ theme
你可以使用 `@parent-theme` 来访问父主题的根路径,下述示例展示了在子主题中创建一个同名的布局组件,并简单使用父主题中的 slot,[@vuepress/theme-vue](https://github.com/vuejs/vuepress/tree/master/packages/%40vuepress/theme-vue) 便是通过这种方式创造的。

```vue
<!-- themePath/components/Foo.vue -->
<!-- .vuepress/theme/components/Foo.vue -->
<template>
<ParentLayout>
<Foo #foo/>
Expand Down
7 changes: 5 additions & 2 deletions packages/docs/docs/zh/theme/option-api.md
Expand Up @@ -7,13 +7,15 @@ metaTitle: Configuration | Theme
和插件几乎一样,主题的配置文件 `themeEntry` 应该导出一个普通的 JavaScript 对象(`#1`),它也可以是一个返回对象的函数(`#2`),这个函数接受用户在 `siteConfig.themeConfig` 为第一个参数、包含编译期上下文的 [ctx](../plugin/context-api.md) 对象作为第二个参数。

``` js
// .vuepress/theme/index.js
// #1
module.exports = {
// ...
}
```

``` js
// .vuepress/theme/index.js
// #2
module.exports = (themeConfig, ctx) => {
return {
Expand Down Expand Up @@ -67,6 +69,7 @@ build 模式下使用的 HTML 模板路径,默认模板见 [这里](https://gi
- 默认值: undefined

```js
// .vuepress/theme/index.js
module.exports = {
extend: '@vuepress/theme-default'
}
Expand All @@ -85,7 +88,7 @@ VuePress 支持一个主题继承于另一个主题。VuePress 将遵循 `overri
- 默认值: undefined

```js
// themePath/index.js
// .vuepress/theme/index.js
module.exports = {
globalLayout: '/path/to/your/global/vue/sfc'
}
Expand All @@ -97,7 +100,7 @@ module.exports = {


```vue
<!-- themePath/layouts/GlobalLayout.vue -->
<!-- .vuepress/theme/layouts/GlobalLayout.vue -->
<template>
<div id="global-layout">
<header><h1>Header</h1></header>
Expand Down
5 changes: 5 additions & 0 deletions packages/docs/docs/zh/theme/using-a-theme.md
Expand Up @@ -7,6 +7,7 @@
一个主题可以在以 `vuepress-theme-xxx` 的形式发布到 npm,你可以这样使用它:

``` js
// .vuepress/config.js
module.exports = {
theme: 'vuepress-theme-xx'
}
Expand All @@ -17,6 +18,7 @@ module.exports = {
如果你的主题名以 `vuepress-theme-` 开头,你可以使用缩写来省略这个前缀:

``` js
// .vuepress/config.js
module.exports = {
theme: 'xxx'
}
Expand All @@ -25,6 +27,7 @@ module.exports = {
和下面等价:

``` js
// .vuepress/config.js
module.exports = {
theme: 'vuepress-theme-xxx'
}
Expand All @@ -33,6 +36,7 @@ module.exports = {
这也适用于 [Scoped Packages](https://docs.npmjs.com/misc/scope):

``` js
// .vuepress/config.js
module.exports = {
theme: '@org/vuepress-theme-xxx', // 或者一个官方主题: '@vuepress/theme-xxx'
}
Expand All @@ -41,6 +45,7 @@ module.exports = {
缩写:

``` js
// .vuepress/config.js
module.exports = {
theme: '@org/xxx', // 或者一个官方主题: '@vuepress/xxx'
}
Expand Down
3 changes: 2 additions & 1 deletion packages/docs/docs/zh/theme/writing-a-theme.md
Expand Up @@ -109,10 +109,11 @@ layout: AnotherLayout
你可以通过主题的配置文件 `themePath/index.js` 来给主题应用一些插件:

```js
// .vuepress/theme/index.js
module.exports = {
plugins: [
'@vuepress/pwa',
{
{
serviceWorker: true,
updatePopup: true
}
Expand Down

0 comments on commit 8999aba

Please sign in to comment.