Hprc banner tamu.png

Difference between revisions of "Wikification"

From TAMU HPRC
Jump to: navigation, search
(sc.tamu.edu)
Line 21: Line 21:
 
<pre>
 
<pre>
 
pandoc -f html -t mediawiki /tmp/foo
 
pandoc -f html -t mediawiki /tmp/foo
<pre>
+
</pre>
 
and then just cut pasting that to the edit screen of this wiki.
 
and then just cut pasting that to the edit screen of this wiki.

Revision as of 21:16, 16 September 2014

To convert the Git Hub wiki "markdown" and the sc.tamu.edu web pages, I used pandoc.

Adadocs

For the Adadocs wiki, it was mostly a matter of:

#!/bin/sh
#git clone https://github.tamu.edu/j-perdue/adadocs.wiki.git
cd adadocs.wiki
for x in `ls *.md` ; do echo "### Converting $x" ; xx=`echo $x | sed 's/.md/.mw/' | sed 's/-/_/g' | sed 's/^/Ada:/'` ; pandoc -f markdown_github -t mediawiki -o $xx $x ; done
# EOF

Note that pandoc did a horrible job with tables... most of them had to be fixed manually.

sc.tamu.edu

For the sc.tamu.edu stuff, it is just a matter of finding the stuff between:

<!-- begin main content -->
<!-- end main content -->

and then cut/pasting to a file and running:

pandoc -f html -t mediawiki /tmp/foo

and then just cut pasting that to the edit screen of this wiki.