Skip to content

[en] comment format fixing #1067

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

Merged
merged 4 commits into from
Nov 20, 2017
Merged
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
4 changes: 2 additions & 2 deletions docs/en/configurations/advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To do that, specify the `loaders` option for `vue-loader`:
module.exports = {
// other options...
module: {
// module.rules is the same as module.loaders in 1.x
// `module.rules` is the same as `module.loaders` in 1.x
rules: [
{
test: /\.vue$/,
Expand Down Expand Up @@ -73,7 +73,7 @@ module.exports = {
}
]
},
// vue-loader configurations
// `vue-loader` configurations
vue: {
loaders: {
// same configuration rules as above
Expand Down
4 changes: 2 additions & 2 deletions docs/en/features/postcss.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ For webpack 2.x:
module.exports = {
// other options...
module: {
// module.rules is the same as module.loaders in 1.x
// `module.rules` is the same as `module.loaders` in 1.x
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
// vue-loader options goes here
// `vue-loader` options goes here
options: {
// ...
postcss: [require('postcss-cssnext')()]
Expand Down
4 changes: 2 additions & 2 deletions docs/en/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
test: /\.vue$/,
loader: 'vue-loader',
options: {
// vue-loader options
// `vue-loader` options
}
}
]
Expand All @@ -27,7 +27,7 @@ For webpack 1.x: add a root `vue` block in your webpack config.
module.exports = {
// ...
vue: {
// vue-loader options
// `vue-loader` options
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions docs/ja/configurations/advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
module.exports = {
// 他のオプション
module: {
// module.rules は 1.x での module.loaders と同じです
// `module.rules` は 1.x での `module.loaders` と同じです
rules: [
{
test: /\.vue$/,
Expand Down Expand Up @@ -71,7 +71,7 @@ module.exports = {
}
]
},
// vue-loader の設定
// `vue-loader` の設定
vue: {
loaders: {
// 上記の設定と同じ
Expand Down
4 changes: 2 additions & 2 deletions docs/ja/features/postcss.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ webpack 2.x の例:
module.exports = {
// 他の設定
module: {
// module.rules は 1.x の module.loaders と同じです
// `module.rules` は 1.x の `module.loaders` と同じです
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
// vue-loader のオプションはここです
// `vue-loader` のオプションはここです
options: {
// ...
postcss: [require('postcss-cssnext')()]
Expand Down
4 changes: 2 additions & 2 deletions docs/ja/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
test: /\.vue$/,
loader: 'vue-loader',
options: {
// vue-loader オプション
// `vue-loader` オプション
}
}
]
Expand All @@ -27,7 +27,7 @@ webpack 1.x の場合: webpack の設定のルートに `vue` ブロックを追
module.exports = {
// ...
vue: {
// vue-loader オプション
// `vue-loader` オプション
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions docs/kr/configurations/advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
module.exports = {
// 기타 옵션들...
module: {
// module.rules은 1.x버전의 module.loaders과 같습니다
// `module.rules`은 1.x버전의 module.loaders과 같습니다
rules: [
{
test: /\.vue$/,
Expand Down Expand Up @@ -70,7 +70,7 @@ module.exports = {
}
]
},
// vue-loader 설정
// `vue-loader` 설정
vue: {
loaders: {
// 위와 동일한 설정 규칙입니다
Expand Down
4 changes: 2 additions & 2 deletions docs/kr/features/postcss.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ webpack 2버전 예제:
module.exports = {
// 기타 설정...
module: {
// module.rules는 1.x의 module.loaders와 동일
// `module.rules`는 1.x의 module.loaders와 동일
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
// vue-loader 옵션은 여기에 지정합니다
// `vue-loader` 옵션은 여기에 지정합니다
options: {
// ...
postcss: [require('postcss-cssnext')()]
Expand Down
4 changes: 2 additions & 2 deletions docs/kr/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
test: /\.vue$/,
loader: 'vue-loader',
options: {
// vue-loader 옵션
// `vue-loader` 옵션
}
}
]
Expand All @@ -27,7 +27,7 @@ webpack 1.x의 경우 webpack 설정에 루트 `vue` 블럭을 추가합니다.
module.exports = {
// ...
vue: {
// vue-loader 옵션
// `vue-loader` 옵션
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion docs/pt_BR/configurations/advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Para fazer isto, especifique a opção `loaders` para `vue-loader`:
module.exports = {
// outras opções...
module: {
// module.rules é o mesmo que module.loaders em 1.x
// `module.rules` é o mesmo que `module.loaders` em 1.x
rules : [
{
test: /\.vue$/,
Expand Down
2 changes: 1 addition & 1 deletion docs/pt_BR/features/postcss.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Para webpack 2.x:
module.exports = {
// outras opções...
module: {
// module.rules é o mesmo que module.loaders em 1.x
// `module.rules` é o mesmo que `module.loaders` em 1.x
rules: [
{
test: /\.vue$/,
Expand Down
2 changes: 1 addition & 1 deletion docs/ru/configurations/advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
module.exports = {
// другие настройки...
module: {
// module.rules тоже самое, что и module.loaders в 1.x
// `module.rules` тоже самое, что и `module.loaders` в 1.x
rules: [
{
test: /\.vue$/,
Expand Down
2 changes: 1 addition & 1 deletion docs/ru/features/postcss.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module.exports = {
module.exports = {
// другие настройки...
module: {
// module.rules тоже самое, что и module.loaders в 1.x
// `module.rules` тоже самое, что и `module.loaders` в 1.x
rules: [
{
test: /\.vue$/,
Expand Down
4 changes: 2 additions & 2 deletions docs/zh-cn/configurations/advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
module.exports = {
// other options...
module: {
// module.rules 与 1.x 中的 module.loaders 相同
// `module.rules` 与 1.x 中的 `module.loaders` 相同
rules: [
{
test: /\.vue$/,
Expand Down Expand Up @@ -68,7 +68,7 @@ module.exports = {
}
]
},
// vue-loader configurations
// `vue-loader` configurations
vue: {
loaders: {
// same configuration rules as above
Expand Down
4 changes: 2 additions & 2 deletions docs/zh-cn/features/postcss.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ Webpack 2.x 例子:
module.exports = {
// other options...
module: {
// module.rules is the same as module.loaders in 1.x
// `module.rules` is the same as `module.loaders` in 1.x
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
// vue-loader options goes here
// `vue-loader` options goes here
options: {
// ...
postcss: [require('postcss-cssnext')()]
Expand Down
4 changes: 2 additions & 2 deletions docs/zh-cn/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
test: /\.vue$/,
loader: 'vue-loader',
options: {
// vue-loader options
// `vue-loader` options
}
}
]
Expand All @@ -27,7 +27,7 @@ Webpack 1.x:在 Webpack 配置中添加根节点 `vue` 块。
module.exports = {
// ...
vue: {
// vue-loader options
// `vue-loader` options
}
}
```
Expand Down