aboutsummaryrefslogtreecommitdiff
path: root/docs/shell_doc.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/shell_doc.md')
-rwxr-xr-xdocs/shell_doc.md57
1 files changed, 18 insertions, 39 deletions
diff --git a/docs/shell_doc.md b/docs/shell_doc.md
index 6c655be..a414926 100755
--- a/docs/shell_doc.md
+++ b/docs/shell_doc.md
@@ -1,3 +1,7 @@
+<!-- Generated with Stardoc: http://skydoc.bazel.build -->
+
+<a name="#shell.array_literal"></a>
+
## shell.array_literal
<pre>
@@ -14,28 +18,16 @@ Note that all elements in the array are quoted (using `shell.quote`) for
safety, even if they do not need to be.
-### Parameters
-
-<table class="params-table">
- <colgroup>
- <col class="col-param" />
- <col class="col-description" />
- </colgroup>
- <tbody>
- <tr id="shell.array_literal-iterable">
- <td><code>iterable</code></td>
- <td>
- required.
- <p>
- A sequence of elements. Elements that are not strings will be
- converted to strings first, by calling `str()`.
- </p>
- </td>
- </tr>
- </tbody>
-</table>
+**PARAMETERS**
+
+
+| Name | Description | Default Value |
+| :-------------: | :-------------: | :-------------: |
+| iterable | A sequence of elements. Elements that are not strings will be converted to strings first, by calling <code>str()</code>. | none |
+<a name="#shell.quote"></a>
+
## shell.quote
<pre>
@@ -48,24 +40,11 @@ This function quotes the given string (in case it contains spaces or other
shell metacharacters.)
-### Parameters
-
-<table class="params-table">
- <colgroup>
- <col class="col-param" />
- <col class="col-description" />
- </colgroup>
- <tbody>
- <tr id="shell.quote-s">
- <td><code>s</code></td>
- <td>
- required.
- <p>
- The string to quote.
- </p>
- </td>
- </tr>
- </tbody>
-</table>
+**PARAMETERS**
+
+
+| Name | Description | Default Value |
+| :-------------: | :-------------: | :-------------: |
+| s | The string to quote. | none |