summaryrefslogtreecommitdiff
path: root/files/filters/hugo-pre.sh
blob: de94b26eac2a195eb59b0a302b07d3582658c99d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

name=$1

extension=${1: -3}

case $extension in
	.md) markdown ;;
	*)
		cat <<- EOF
		<pre>$(cat -)</pre>
		EOF
		;;
esac