diff --git a/tests/cases/recipes-with-extras.html b/tests/cases/recipes-with-extras.html index 8ff78b1..265bab7 100644 --- a/tests/cases/recipes-with-extras.html +++ b/tests/cases/recipes-with-extras.html @@ -162,3 +162,11 @@ #!/usr/bin/env python3 import sys print(sys.argv) + +styles: + #!/bin/bash + echo "{{GREEN}}Green{{NORMAL}}" + echo '{{BLUE}}{{BOLD}}Bold Blue{{NORMAL}}' + echo {{UNDERLINE}}{{MAGENTA}}Magenta underlined text{{NORMAL}} + echo "{{style('command')}}echo command{{NORMAL}}" + echo {{quote(style('command') + 'echo command' + NORMAL)}} >&2 diff --git a/tests/cases/recipes-with-extras.just b/tests/cases/recipes-with-extras.just index a90b3ec..dca98a1 100644 --- a/tests/cases/recipes-with-extras.just +++ b/tests/cases/recipes-with-extras.just @@ -162,3 +162,11 @@ ext: #!/usr/bin/env python3 import sys print(sys.argv) + +styles: + #!/bin/bash + echo "{{GREEN}}Green{{NORMAL}}" + echo '{{BLUE}}{{BOLD}}Bold Blue{{NORMAL}}' + echo {{UNDERLINE}}{{MAGENTA}}Magenta underlined text{{NORMAL}} + echo "{{style('command')}}echo command{{NORMAL}}" + echo {{quote(style('command') + 'echo command' + NORMAL)}} >&2