diff options
author | Xiao Pan <gky44px1999@gmail.com> | 2024-02-25 08:01:32 +0000 |
---|---|---|
committer | Xiao Pan <gky44px1999@gmail.com> | 2024-02-25 08:01:32 +0000 |
commit | 5f11eee7396ba2edecf099582f413ba46e6e47f8 (patch) | |
tree | 8b8be3567e8b5161d4d569aabf4ca3ffdb787962 /usr | |
parent | 915f2d89a1df71b3a686f41ae32d745b81828575 (diff) |
cgit better highlight
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/lib/cgit/filters/syntax-highlighting-edited.sh | 27 |
1 files changed, 10 insertions, 17 deletions
diff --git a/usr/lib/cgit/filters/syntax-highlighting-edited.sh b/usr/lib/cgit/filters/syntax-highlighting-edited.sh index 3de95fa5..2c33b907 100755 --- a/usr/lib/cgit/filters/syntax-highlighting-edited.sh +++ b/usr/lib/cgit/filters/syntax-highlighting-edited.sh @@ -101,21 +101,14 @@ BASENAME="$1" EXTENSION="${BASENAME##*.}" -[ "${BASENAME}" = "${EXTENSION}" ] && EXTENSION=txt -[ -z "${EXTENSION}" ] && EXTENSION=txt +# map Makefile, Makefile.*, makefile, and makefile.* to .mk +if [ "${BASENAME%%.*}" = Makefile ] || [ "${BASENAME%%.*}" = makefile ]; then + EXTENSION=mk +fi -# map Makefile and Makefile.* to .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 -# for version 3. -# -# Version 2 can be found (for example) on EPEL 5, while version 3 can be -# found (for example) on EPEL 6. -# -# This is for version 2 -#exec highlight --force -f -I -X -S "$EXTENSION" 2>/dev/null - -# This is for version 3 -exec highlight --force --inline-css -f -I -O xhtml -S "$EXTENSION" 2>/dev/null +# `--force` needed for highlight; one example is `cat textfile | highlight -O ansi --force`, without `--force` will error 1 and no output +if [ "${BASENAME}" = "${EXTENSION}" ] || [ -z "${EXTENSION}" ]; then + exec highlight --force --inline-css -f -I -O xhtml 2>/dev/null +else + exec highlight --force --inline-css -f -I -O xhtml -S "$EXTENSION" 2>/dev/null +fi |