#!/bin/sh

# Test AsciiDoc filter.
# Assumes UNIX fmt(1) and sed(1) commands in $PATH.
# Wraps text column 60 and indents by 4 spaces.

fmt -w 60 | sed 's/^/    /'
