From 92c477e13994406067d6d37a17ce4a0443551489 Mon Sep 17 00:00:00 2001 From: Peter Nowee Date: Fri, 17 Feb 2017 12:10:05 +0100 Subject: [PATCH] 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. --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 989c078..ed8e3b5 100644 --- a/README.md +++ b/README.md @@ -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" }