README: fix markdown syntax for code highlighting

Change-Id: I8caeacd3a843e04364d28233e9c425cd536f811c
This commit is contained in:
Emilien Macchi 2015-10-08 14:19:42 -07:00
parent 0f4e21a482
commit c1f5f5c8fd

View File

@ -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 the names and versions of the gems. This section of config_defaults.yml might
look like look like
`` ```
Gemfile: Gemfile:
required: required:
- gem: rake - gem: rake
@ -71,7 +71,7 @@ Gemfile:
version: '~> 4.7' version: '~> 4.7'
require: 'minitest/unit' require: 'minitest/unit'
#... #...
`` ```
The template also looks in .sync.yml for a group of optional gems to install, 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 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: To mark a file "unmanaged", list it in .sync.yml with the value `unmanaged:
true`. For example, true`. For example,
`` ```
--- ---
spec/spec_helper.rb: spec/spec_helper.rb:
unmanaged: true unmanaged: true
`` ```
### Deleted Files ### 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 To mark a file deleted, list it in .sync.yml with the value `delete: true`. For
example, example,
`` ```
--- ---
spec/acceptance/nodesets/sles-11sp1-x64.yml spec/acceptance/nodesets/sles-11sp1-x64.yml
delete: true delete: true