I have been able to get phpDoc into Github wiki without too much effort. This is still a work in progress, but check this out... this is straight from my GitHub code that is partly commented with phpDoc:
https://github.com/charlestonsoftware/WPCSL-generic/wiki/_pages
Here is the basic outline. I will refine later tonight and post an article on my blog with step-by-step and the code fixes necessary but this should get most of you started:
Go Clone Your GitHub Wiki Pages
Go to your GitHub project and look for the Wiki tab. If you do not have it, especially for an older project, you may need to enable "pages" in the repo settings at GitHub.
Under the Wiki tab is a sub-tab for "Git Access". It has the WIKI repo URL, which will automatically be attached to the parent project under the wiki tab.
Clone this to a new directory on your dev box.
(BTW, this step is optional, this is just how I opted to do this, keep the docs OUT of my main code repo).
Setup/Build The PHPDocMD Tool
- Go clone this into a clean directory on your dev box: https://github.com/evert/phpdoc-md
- Go to the new phpdocmd directory and go to the src directory.
- Go clone Twig under there to a directory name Twig: https://github.com/fabpot/Twig
Tweak the phpdoc-md code, just edit the ./bin/phpdocmd file so the top looks similar to this:
$docmdDir = dirname(FILE);
set_include_path(get_include_path().PATH_SEPARATOR.$docmdDir.'/../src/Twig/lib');
// Potential composer autoloader paths
$paths = array(
$docmdDir . '/../src/PHPDocMD/Parser.php',
$docmdDir . '/../src/PHPDocMD/Generator.php',
$docmdDir . '/../src/Twig/lib/Twig/Autoloader.php',
);
foreach($paths as $path) {
if (file_exists($path)) {
include $path;
print "including $path\n";
}
}
Twig_Autoloader::register();
// Everts crappy option parser.
These code edits are necessary because the tool is not refined yet. It was clearly setup for the developer's system which has Twig installed and a vendor autoloader file that is not in the git repo. Not a big deal, easy enough to get around if you follow the steps here.
BTW, that last comment is his, not mine. I left if there so you know where to stop the edit.
Run The PhpDoc & PHPDocMD Tools
You may want to symlink that phpdocmd to your /usr/bin directory so you don't have to type the full path every time, but now you just need a few steps to create GitHub Wiki compatible doc files:
# phpdoc -t . -d .
That creates the structure.xml file needed to generate the MD files.
Then run this command:
# phpdocmd ./structure.xml <path to your github WIKI project>
Now your GitHub Wiki Docs project should be full of MD files that reflect your code PHPDocs. Just push your GitHub Wiki files back to the GitHub server.
HTH. Probably needs refinement but I think we can all get on the PHPDocMD project and help the original author with features & tweaks.