﻿This tool converts xmldoc files to the Markdown files which are supported by the github's wiki.

Usage: xmldoc2wiki filepattern [outputdir]
  filepattern: files that match this pattern will be processed. Wildcards '*' and '?' allowed.
  outputdir: directory, whereto output documentation files will be saved. Default value is '.' (current directory)

Examples:
  xmldoc2wiki *Rules.xml
  xmldoc2wiki /home/user/mono-tools/gendarme/bin/*.xml /home/user/mono-tools/gendarme/doc
  xmldoc2wiki *Rules.xml doc
  xmldoc2wiki bin/*.xml 2-8-doc

Local wiki access:

  a) Install gollum (https://github.com/github/gollum#readme). This requires Ruby.

	% gem install gollum

  b) Install rdiscount (http://daringfireball.net/projects/markdown/) for Markdown support

	% gem install rdiscount

  c) Install Pygments (http://pygments.org/) for syntax highlightning. This requires Python.

	% easy_install Pygments

