Mark options file example JSON and remove comments

The options file is JSON, not JavaScript, and JSON does not allow
comments. An options file with comments as shown in the current
example in README.md will fail to load.

This commit removes the comments. They do not seem important enough to
place them elsewhere.
This commit is contained in:
Peter Nowee 2017-02-17 12:10:05 +01:00
parent 0cd59416b8
commit 92c477e139
1 changed files with 1 additions and 3 deletions

View File

@ -482,11 +482,9 @@ hackmyresume BUILD resume.json -o path/to/options.json
The options file can contain any documented HackMyResume option, including
`theme`, `silent`, `debug`, `pdf`, `css`, and other settings.
```javascript
```json
{
// Set the default theme to "compact"
"theme": "compact",
// Change the "employment" section title text to "Work"
"sectionTitles": {
"employment": "Work"
}