diff options
author | Teddy Wing | 2022-03-27 05:13:57 +0200 |
---|---|---|
committer | Teddy Wing | 2022-03-27 05:13:57 +0200 |
commit | 34c607824c0d1217932724663325c045b8f3cea2 (patch) | |
tree | fdc02a716b8d394511de7a21ee88d093b8f563cd | |
parent | a0d2ffa2d41cc5291d0e3740b4c94671112869d6 (diff) | |
download | yaqlite-34c607824c0d1217932724663325c045b8f3cea2.tar.bz2 |
README: Change the line breaks in the usage example
Separate the paragraphs with an empty line.
-rw-r--r-- | README.md | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -18,12 +18,10 @@ database and selecting records as YAML. $ yaqlite insert --database test.db restaurants <<EOF name: Western Restaurant Nekoya - description: >- - Located in the business district, this restaurant serves a wide variety of - cuisine for all tastes and appetites. + description: |- + Located in the business district, this restaurant serves a wide variety of cuisine for all tastes and appetites. - Enjoy hearty dishes like the beef stew, and conclude with a chocolate parfait - so light and airy you'll think you're eating a cloud. + Enjoy hearty dishes like the beef stew, and conclude with a chocolate parfait so light and airy you'll think you're eating a cloud. rating: 5 EOF @@ -32,6 +30,7 @@ database and selecting records as YAML. name: Western Restaurant Nekoya description: | Located in the business district, this restaurant serves a wide variety of cuisine for all tastes and appetites. + Enjoy hearty dishes like the beef stew, and conclude with a chocolate parfait so light and airy you'll think you're eating a cloud. rating: 5 |