Commit Graph

11 Commits

Author SHA1 Message Date
Zhou Zheng Sheng 0a2a6e570a Website: Delete the unnecessary backslash at the end shell command line
Shell thinks '\<newline>' as line continuation only when it's unquoted
or in double quotes. It's not necessary to manually mark '\<newline>'
in single quotes, because when shell sees the a single quote starts, it
continues the line automatically until it sees the matching single quote
ends.

Thus,
echo 'a\
  b'
would give the following output
a\
  b

And
echo 'a
  b'
gives the following output
a
  b

Since we don't want to leave backslashes in the resulting json files, we
should remove the line continuation backslashes inside single quotes.
2015-07-07 11:27:47 +08:00
siddharthist b224475ca3 Specified which user health checks get run as.
Fixes issue #1036
2015-06-15 21:55:05 -05:00
Ryan Breen ca7cd6496a Website: cleanup for intro/getting-started/checks.html. 2015-03-17 17:50:28 -04:00
Ryan Breen 65c23a5f4f Website: finalize cleanup for intro/getting-started/checks. 2015-02-20 18:16:31 -05:00
Ryan Breen 5ecf003adc Website: cleanup for intro/getting-started/checks. 2015-02-20 18:10:58 -05:00
Dan Frost a6420171e5 docs: intro/checks: minor fixes 2014-11-26 11:55:42 +00:00
Seth Vargo e265ea050d Use new Markdown syntaxes and add SEO descriptions 2014-10-19 19:42:13 -04:00
Shayan Pooya 48f947386b website: fix a couple of typos. 2014-05-03 19:16:55 -04:00
Mitchell Hashimoto 0932deafa3 website: health checks page 2014-04-14 14:00:53 -07:00
Armon Dadgar 6309580b6c website: More getting started info 2014-04-10 19:06:10 -07:00
Armon Dadgar 361d858f05 website: Working on getting started guide 2014-04-10 17:41:49 -07:00