1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-11-05 09:56:22 +00:00

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

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 The options file can contain any documented HackMyResume option, including
`theme`, `silent`, `debug`, `pdf`, `css`, and other settings. `theme`, `silent`, `debug`, `pdf`, `css`, and other settings.
```javascript ```json
{ {
// Set the default theme to "compact"
"theme": "compact", "theme": "compact",
// Change the "employment" section title text to "Work"
"sectionTitles": { "sectionTitles": {
"employment": "Work" "employment": "Work"
} }