pages/syntax_wrapper.sh
2025-06-24 14:29:38 -04:00

7 lines
No EOL
175 B
Bash
Executable file

#! /usr/bin/env sh
if [ $# -lt 1 ] || ! grep -qw "$1" lexers.out; then
recode utf8..html
else
pygmentize -l $1 -f html | head -c -13 | awk -F '<pre>' '{print $NF}'
fi