Hprc banner tamu.png

Difference between revisions of "Wikification"

From TAMU HPRC
Jump to: navigation, search
(sc.tamu.edu)
(Images)
Line 26: Line 26:
 
==Images==
 
==Images==
 
To use an image on a page:
 
To use an image on a page:
1) Use the [[Special:Upload | Upload file]] link on the left.
+
# Use the [[Special:Upload | Upload file]] link on the left.
2) Browse for the file to upload and then give it a name (for the wiki) and a description (if desired).  Click OK (or
+
# Browse for the file to upload and then give it a name (for the wiki) and a description (if desired).  Click '''Upload file''' button.

Revision as of 17:34, 19 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 the output from that to the edit screen of this wiki.

Images

To use an image on a page:

  1. Use the Upload file link on the left.
  2. Browse for the file to upload and then give it a name (for the wiki) and a description (if desired). Click Upload file button.