#!/bin/sh

tmp="`mktemp`"
sed -e 's/:\s*#\s*{{{\s*$/:/' < "$1" > "$tmp"
doxypypy --autobrief "$tmp" || doxypy --autobrief "$tmp"
rm "$tmp"
