X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/e52a5226b83dc5232adb7d9076cae3ad4b123df4..d14faf4424ae06ced696c15f205c85fe55b8e6e7:/filters/syntax-highlighting.sh diff --git a/filters/syntax-highlighting.sh b/filters/syntax-highlighting.sh index 0639b10..47f6267 100755 --- a/filters/syntax-highlighting.sh +++ b/filters/syntax-highlighting.sh @@ -39,8 +39,11 @@ BASENAME="$1" EXTENSION="${BASENAME##*.}" +[ "${BASENAME}" = "${EXTENSION}" ] && EXTENSION=txt +[ -z "${EXTENSION}" ] && EXTENSION=txt + # map Makefile and Makefile.* to .mk -[ "${BASENAME%%.*}" == "Makefile" ] && EXTENSION=mk +[ "${BASENAME%%.*}" = "Makefile" ] && EXTENSION=mk # highlight versions 2 and 3 have different commandline options. Specifically, # the -X option that is used for version 2 is replaced by the -O xhtml option