diff --git a/demo/writing-out-braces b/demo/writing-out-braces new file mode 100755 index 0000000..2193243 --- /dev/null +++ b/demo/writing-out-braces @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +cd "$(dirname "$0")" # Go to the script's directory + + +export OPEN="{{" +export CLOSE="}}" +cat <<'EOF' | mo +You can use environment variables to write output that has double braces. + + {{OPEN}}sampleTag{{CLOSE}} +EOF