Download this file
11 lines (10 with data), 377 Bytes
| #!/bin/sh
# Simple filter to filter a ChangeLog to something in reStructuredText.
#
if [ -n "$1" ]
then
printf "================================\n%s\n================================\n\n" "$1"
else
printf "=========================\n%s\n=========================\n\n" "ChangeLog"
fi
expand | sed -e 's/^ \* / - /g ; s/^ / /g ; s/\*/\\*/g; s/\_/\\_/g'
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.