398
edits
Changes
no edit summary
The following script will convert HTML from a [[w:MediaWiki|MediaWiki]] page to [[w:Wikitext|Wikitext]]. The script was written to facilitate the 2009 [[VTLUUG servers|server]] migration.
=Script=
=Running=
<pre>
sed -rn -e '/<!-- start content -->/,/<!--/p' input.html | sed -r -f script > out.wikitext</pre> ==Batch==The following command will create .wikitext files of all the HTML files in the current directory for your cut and paste convenience.<pre>for f in *.html ; do $( sed -rn -e '/<!-- start content -->/,/<!--/p' "$f " | sed -r -f script > "$f.wikitext " ) ; done
</pre>