From c6e0c6062de9b761c9fdbe05f1ff245c86eb885a Mon Sep 17 00:00:00 2001 From: Tyler Akins Date: Fri, 23 Jan 2015 18:19:44 +0000 Subject: [PATCH] Remembered another feature that is not implemented I should make sure to call these things out instead of trying to hide them. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d0822bc..307c546 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ I admit that implementing everything in bash just doesn't make a lot of sense. * HTML encoding is not built into `mo`. The `{{{...}}}` and `{{...}}` tags both work. `echo '{{TEST}}' | TEST='' mo` will give you "``" instead of "`>b<`". * You must make sure the data is in the environment when `mo` runs. The easiest way to do that is to source `mo` in your shell script after setting up lots of other environment variables / functions. * Associative arrays are not addressable via their index. You can't use `{{VARIABLE_NAME.INDEX_NAME}}` and expect it to work. Associative arrays aren't supported in Bash 3. +* Changing the delimiters. Really this could be done, but I often don't have the need to do this. File an issue or submit a pull request if this is something ou'd really like to see. Developing