- if [ "$USE_GLOW" = true ]; then
- decode_string "$HELP" | glow -
- elif [ "$USE_BAT" = true ]; then
- decode_string "$HELP" | bat -pp --decorations=always --color=always --language markdown
- elif [ $USE_PYGMENTIZE = true ]; then
- decode_string "$HELP" | pygmentize -l markdown
- printf "\n"
- elif [ $USE_HIGHLIGHT = true ]; then
- decode_string "$HELP" | highlight --out-format ansi --syntax markdown
- else
- decode_string "$HELP"
- fi