Skip to content

Commit dc98c03

Browse files
committed
regenerate example readmes
1 parent b0b979c commit dc98c03

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

examples/help-command/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ commands:
9999
## - name: command
100100
## help: Help subject
101101
##
102-
command="${args[command]}"
102+
command="${args[command]:-}"
103103
long_usage=yes
104104

105105
if [[ -z "$command" ]]; then

examples/ini/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ email = value for user.email
104104
# Using the standard library (lib/ini.sh) to show a value from the config
105105
ini_load config.ini
106106

107-
key="${args[key]}"
108-
value=${ini[$key]}
107+
key="${args[key]:-}"
108+
value=${ini[$key]:-}
109109

110110
if [[ "$value" ]]; then
111111
echo "$key = $value"

examples/render-mandoc/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ x_mandoc_authors: Lana Lang
2626
x_mandoc_footer: |-
2727
# ISSUE TRACKER
2828
Report issues at <https://github.com/lanalang/smallville>
29+
x_mandoc_see_also:
30+
- docker
31+
- docker-compose.yml(5)
2932

3033
dependencies:
3134
aws-cli: Download from <https://aws.amazon.com/cli/>
@@ -90,13 +93,16 @@ DEPENDENCIES
9093
aws-cli
9194
Download from <https://aws.amazon.com/cli/>
9295

96+
SEE ALSO
97+
docker(1), docker-compose.yml(5)
98+
9399
ISSUE TRACKER
94100
Report issues at <https://github.com/lanalang/smallville>
95101

96102
AUTHORS
97103
Lana Lang.
98104

99-
Version 0.1.0 August 2023 download(1)
105+
Version 0.1.0 November 2023 download(1)
100106

101107

102108
````

examples/render-markdown/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ Overwrite existing files
103103
Show debug information
104104

105105
# ISSUE TRACKER
106-
107106
Report issues at \<https://github.com/lanalang/smallville\>
108107

109108
````

0 commit comments

Comments
 (0)