open-consul/website/source/intro/getting-started
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
..
agent.html.markdown Website: substantial rewrite of intro/getting-started/join.html. 2015-03-14 14:13:41 -04:00
checks.html.markdown Website: Delete the unnecessary backslash at the end shell command line 2015-07-07 11:27:47 +08:00
install.html.markdown Website: improve flow between getting-started docs. 2015-03-02 08:50:13 -05:00
join.html.markdown website: fix typo 2015-05-14 10:09:51 +02:00
kv.html.markdown Website: cleanup for intro/getting-started/kv.html. 2015-03-18 10:49:41 -04:00
next-steps.html.markdown Use new Markdown syntaxes and add SEO descriptions 2014-10-19 19:42:13 -04:00
services.html.markdown Website: GH-730 and cleanup for intro/getting-started/services.html 2015-03-13 14:56:58 -04:00
ui.html.markdown Website: change order of UIs listed in intro/getting-started/ui.html. 2015-03-19 19:27:30 -04:00