Skip to content

Commit

Permalink
Merge pull request #15 from alexjeffburke/readme-quoting
Browse files Browse the repository at this point in the history
Fix output quoting.
  • Loading branch information
papandreou committed Jul 27, 2020
2 parents 0402aee + 6daaca0 commit b12a3d1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -63,7 +63,7 @@ console.log(renderer.render(123)); // cxxiii
```

```output
'cxxiii'
cxxiii
```

The `@counter-system` ones are created by their `system` name and accept an
Expand All @@ -78,7 +78,7 @@ console.log(renderer.render(123)); // XXXXZ
```

```output
'XXXXZ'
XXXXZ
```

The name (system) can also be passed as a separate property instead of the name
Expand All @@ -94,7 +94,7 @@ console.log(renderer.render(123)); // XXXXZ
```

```output
'XXXXZ'
XXXXZ
```

They also support a `fallback` option to be used when the value is out of range.
Expand All @@ -111,8 +111,8 @@ console.log(renderer.render(4)); // •
```

```output
'Z'
'•'
Z
```

The `fallback` option can also be passed as another renderer instance, or "lazily" as a function that returns either a `list-style-type` name or a renderer.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -19,7 +19,7 @@
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"evaldown": "^1.2.1",
"evaldown": "^1.2.2",
"mocha": "^8.0.1",
"nyc": "^15.0.0",
"prettier": "~2.0.1",
Expand Down

0 comments on commit b12a3d1

Please sign in to comment.