From c1f5f5c8fde7742c1b9a30e9d36771824e48c219 Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Thu, 8 Oct 2015 14:19:42 -0700 Subject: [PATCH] README: fix markdown syntax for code highlighting Change-Id: I8caeacd3a843e04364d28233e9c425cd536f811c --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index bdb9a80..a6171c9 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ the development and test groups. config_defaults.yml contains a list of the names and versions of the gems. This section of config_defaults.yml might look like -`` +``` Gemfile: required: - gem: rake @@ -71,7 +71,7 @@ Gemfile: version: '~> 4.7' require: 'minitest/unit' #... -`` +``` The template also looks in .sync.yml for a group of optional gems to install, and merges this list with the list found in config_defaults.yml. This section @@ -112,11 +112,11 @@ Rake tasks in the Rakefile which is difficult to manage through a template. To mark a file "unmanaged", list it in .sync.yml with the value `unmanaged: true`. For example, -`` +``` --- spec/spec_helper.rb: unmanaged: true -`` +``` ### Deleted Files @@ -126,7 +126,7 @@ marking it "delete". This is useful for purging nodesets. To mark a file deleted, list it in .sync.yml with the value `delete: true`. For example, -`` +``` --- spec/acceptance/nodesets/sles-11sp1-x64.yml delete: true