#!/bin/sh -e
# SPDX-FileCopyrightText: Chris Pressey, the creator of this work, has dedicated it to the public domain.
# For more information, please refer to <https://unlicense.org/>
# SPDX-License-Identifier: Unlicense
for F in clean_test_*.md; do
echo "$F"
cleandown -e .out.md "$F"
diff -u "$F" "$F.out.md"
rm -f "$F.out.md"
done