Fixing the build, some doc cleanup, update version

This commit is contained in:
Tyler Akins 2023-04-05 20:54:27 -05:00
parent d6794de1e2
commit 4311f29879
No known key found for this signature in database
GPG Key ID: 8F3B8C432F4393BD
3 changed files with 4 additions and 4 deletions

View File

@ -158,7 +158,7 @@ Output:
``` ```
### Helpers / Function Arguments with ### Helpers / Function Arguments
Function Arguments are not a part of the official Mustache implementation, and are more often associated with Handlebar's Helper functionality. Function Arguments are not a part of the official Mustache implementation, and are more often associated with Handlebar's Helper functionality.
@ -168,7 +168,7 @@ Function Arguments are not a part of the official Mustache implementation, and a
{{myfunc foo bar}} {{myfunc foo bar}}
``` ```
For security reasons, this arguments are not immediately available to function calls without a flag. For security reasons, these arguments are not immediately available to function calls without a flag.
#### with `--allow-function-arguments` #### with `--allow-function-arguments`

2
mo
View File

@ -1108,7 +1108,7 @@ moUsage() {
# Save the original command's path for usage later # Save the original command's path for usage later
MO_ORIGINAL_COMMAND="$(cd "${BASH_SOURCE[0]%/*}" || exit 1; pwd)/${BASH_SOURCE[0]##*/}" MO_ORIGINAL_COMMAND="$(cd "${BASH_SOURCE[0]%/*}" || exit 1; pwd)/${BASH_SOURCE[0]##*/}"
MO_VERSION="2.2.0" MO_VERSION="2.3.0"
# If sourced, load all functions. # If sourced, load all functions.
# If executed, perform the actions as expected. # If executed, perform the actions as expected.

View File

@ -1,3 +1,3 @@
{{#repo}} {{#repo}}
<b>{{@index}} - {{.}}</b> <b>{{@key}} - {{.}}</b>
{{/repo}} {{/repo}}