Skip to content

Commit

Permalink
Consistently use double quotes in JSON examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
cust0dian authored and tonyganch committed Aug 18, 2014
1 parent e5d4c79 commit 9fec22b
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions doc/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Acceptable values:
* `{String}` — string with whitespaces and tabs. Note that line breaks are not
allowed here.

Example: `{ 'block-indent': 4 }`
Example: `{ "block-indent": 4 }`

```scss
// Before:
Expand All @@ -114,7 +114,7 @@ a {
}
```

Example: `{ 'block-indent': '' }`
Example: `{ "block-indent": "" }`

```scss
// Before:
Expand Down Expand Up @@ -396,7 +396,7 @@ Acceptable values:

* `abc` - sort unknown options alphabetically.

Example: `{ 'sort-order-fallback': 'abc', 'sort-order': ['top'] }`
Example: `{ "sort-order-fallback": "abc", "sort-order": ["top"] }`

```scss
// Before:
Expand All @@ -415,7 +415,7 @@ a {
}
```

Example: `{ 'sort-order-fallback': 'abc', 'sort-order': ['...'] }`
Example: `{ "sort-order-fallback": "abc", "sort-order": ["..."] }`

```scss
// Before:
Expand All @@ -442,7 +442,7 @@ Acceptable values:
* `{Number}` — number of whitespaces;
* `{String}` — string with whitespaces, tabs or line breaks.

Example: `{ 'space-after-colon': '' }`
Example: `{ "space-after-colon": "" }`

```scss
// Before:
Expand All @@ -458,7 +458,7 @@ a {
}
```

Example: `{ 'space-after-colon': 1 }`
Example: `{ "space-after-colon": 1 }`

```scss
// Before:
Expand All @@ -483,7 +483,7 @@ Acceptable values:
* `{Number}` — number of whitespaces;
* `{String}` — string with whitespaces, tabs or line breaks.

Example: `{ 'space-after-combinator': 1 }`
Example: `{ "space-after-combinator": 1 }`

```scss
// Before:
Expand All @@ -493,7 +493,7 @@ p>a { color: panda; }
p> a { color: panda; }
```

Example: `{ 'space-after-combinator': '\n ' }`
Example: `{ "space-after-combinator": "\n " }`

```scss
// Before:
Expand All @@ -513,7 +513,7 @@ Acceptable values:
* `{Number}` — number of whitespaces;
* `{String}` — string with whitespaces, tabs or line breaks.

Example: `{ 'space-between-declarations': 1 }`
Example: `{ "space-between-declarations": 1 }`

```scss
// Before:
Expand All @@ -533,7 +533,7 @@ a {
}
```

Example: `{ 'space-between-declarations': '\n ' }`
Example: `{ "space-between-declarations": "\n " }`

```scss
// Before:
Expand All @@ -557,7 +557,7 @@ Acceptable values:
* `{Number}` — number of whitespaces;
* `{String}` — string with whitespaces, tabs or line breaks.

Example: `{ 'space-after-opening-brace': 1 }`
Example: `{ "space-after-opening-brace": 1 }`

```scss
// Before:
Expand All @@ -567,7 +567,7 @@ a {color: panda;}
a { color: panda;}
```

Example: `{ 'space-after-opening-brace': '\n' }`
Example: `{ "space-after-opening-brace": "\n" }`

```scss
// Before:
Expand All @@ -587,7 +587,7 @@ Acceptable values:
* `{Number}` — number of whitespaces;
* `{String}` — string with whitespaces, tabs or line breaks.

Example: `{ 'space-after-selector-delimiter': 1 }`
Example: `{ "space-after-selector-delimiter": 1 }`

```scss
// Before:
Expand All @@ -601,7 +601,7 @@ a, b {
}
```

Example: `{ 'space-after-selector-delimiter': '\n' }`
Example: `{ "space-after-selector-delimiter": "\n" }`

```scss
// Before:
Expand All @@ -625,7 +625,7 @@ Acceptable values:
* `{Number}` — number of whitespaces;
* `{String}` — string with whitespaces, tabs or line breaks.

Example: `{ 'space-before-closing-brace': 1 }`
Example: `{ "space-before-closing-brace": 1 }`

```scss
// Before:
Expand All @@ -640,7 +640,7 @@ a {
color: tomato; }
```

Example: `{ 'space-before-closing-brace': '\n' }`
Example: `{ "space-before-closing-brace": "\n" }`

```scss
// Before:
Expand All @@ -664,7 +664,7 @@ Acceptable values:
* `{Number}` — number of whitespaces;
* `{String}` — string with whitespaces, tabs or line breaks.

Example: `{ 'space-before-colon': '' }`
Example: `{ "space-before-colon": "" }`

```scss
// Before:
Expand All @@ -680,7 +680,7 @@ a {
}
```

Example: `{ 'space-before-colon': 1 }`
Example: `{ "space-before-colon": 1 }`

```scss
// Before:
Expand All @@ -705,7 +705,7 @@ Acceptable values:
* `{Number}` — number of whitespaces;
* `{String}` — string with whitespaces, tabs or line breaks.

Example: `{ 'space-before-combinator': 1 }`
Example: `{ "space-before-combinator": 1 }`

```scss
// Before:
Expand All @@ -715,7 +715,7 @@ p>a { color: panda; }
p >a { color: panda; }
```

Example: `{ 'space-before-combinator': '\n' }`
Example: `{ "space-before-combinator": "\n" }`

```scss
// Before:
Expand All @@ -735,7 +735,7 @@ Acceptable values:
* `{Number}` — number of whitespaces;
* `{String}` — string with whitespaces, tabs or line breaks.

Example: `{ 'space-before-opening-brace': 1 }`
Example: `{ "space-before-opening-brace": 1 }`

```scss
// Before:
Expand All @@ -749,7 +749,7 @@ a {
}
```

Example: `{ 'space-before-opening-brace': '\n' }`
Example: `{ "space-before-opening-brace": "\n" }`

```scss
// Before:
Expand All @@ -773,7 +773,7 @@ Acceptable values:
* `{Number}` — number of whitespaces;
* `{String}` — string with whitespaces, tabs or line breaks.

Example: `{ 'space-before-selector-delimiter': 0 }`
Example: `{ "space-before-selector-delimiter": 0 }`

```scss
// Before:
Expand All @@ -787,7 +787,7 @@ a, b {
}
```

Example: `{ 'space-before-selector-delimiter': '\n' }`
Example: `{ "space-before-selector-delimiter": "\n" }`

```scss
// Before:
Expand Down Expand Up @@ -822,7 +822,7 @@ Acceptable values:

* `{Number}` — number of whitespaces;

Example: `{ 'tab-size': 2 }`
Example: `{ "tab-size": 2 }`

```scss
// Before:
Expand Down

0 comments on commit 9fec22b

Please sign in to comment.