docs: style fixes

This commit is contained in:
pancho horrillo
2020-02-24 15:13:53 +01:00
parent 42329a6f56
commit 4b82a2e418
+10 -11
View File
@@ -71,28 +71,27 @@ If you need to write more complex actions, you can leverage multiline commands:
<https://en.wikipedia.org/wiki/Here_document>`_ <https://en.wikipedia.org/wiki/Here_document>`_
Keep things tidy Keeping Things Tidy
---------------- -------------------
Sometimes things grow, and keep things tidy it's the only way to mantain the Sometimes things grow, and keeping things tidy is the only way to mantain the
hole thing. whole thing.
You can distribute your endpoints among several pow files. And you can keep the You can distribute your endpoints in several pow files. And you can keep the
hole thing documented in one html server with kapow. whole thing documented in one html file, served with *Kapow!*.
.. code-block:: console .. code-block:: console
:linenos: :linenos:
$ cat index.pow $ cat index.pow
#!/bin/bash #!/usr/bin/env bash
kapow route add / - <<-'EOF' kapow route add / - <<-'EOF'
cat howto.html | kapow set /response/body cat howto.html | kapow set /response/body
EOF EOF
source ./info_stuff.pow source ./info_stuff.pow
source ./other_endpoints.pow source ./other_endpoints.pow
As you can see the pow files can be imported into another pow files using As you can see, the `pow` files can be imported into another `pow` file using
source. In fat a pow file it's a regular shell file. source. In fact, a `pow` file is just a regular shell script.