open-consul/website/source
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
..
assets Adding networking info to the arch diagram 2015-05-21 11:35:32 -04:00
docs Merge pull request #1046 from hashicorp/f-event-acl 2015-07-02 07:02:07 -07:00
intro Website: Delete the unnecessary backslash at the end shell command line 2015-07-07 11:27:47 +08:00
layouts website: link and formatting adjustments for configtest command 2015-05-11 09:42:06 -07:00
.gitignore website: bulk copy from serf 2014-02-07 16:41:03 -08:00
404.html.erb Add robots.txt and sitemap 2014-10-19 19:41:12 -04:00
community.html.erb Add myself to the community page. 2015-02-14 14:25:56 -05:00
downloads.html.erb website: Fixing image link 2015-02-19 13:24:13 -08:00
downloads_tools.html.erb restore alphabetical order 2015-06-28 13:17:07 -07:00
index.html.erb Use a description attribute for HTML descriptions 2014-10-19 19:41:12 -04:00
robots.txt Use new Markdown syntaxes and add SEO descriptions 2014-10-19 19:42:13 -04:00
sitemap.xml.builder Add robots.txt and sitemap 2014-10-19 19:41:12 -04:00