#!/bin/sh
# modify
# Takes a filename with no extension as a parameter.
# Invokes sed with the commands in the file newbiedoc.sed
# to strip out unwanted MediaWiki HTML and modify links.
# Saves the result using the filename with a .html extension.
#
# Version 0.8
# Copyright 2007-2009 Chris Lale.
# chrislale@users.berlios.de
#
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.


#cat $1|sed -f newbiedoc.sed>$1.html 
cat $1|sed -f newbiedoc.sed>$1

