A few minor documentation updates.

This commit is contained in:
Gabriel Wicke 2012-03-07 18:42:26 +00:00
parent 5f618103d7
commit 1f8c43b9e2
Notes: Gabriel Wicke 2012-03-07 18:42:26 +00:00
2 changed files with 8 additions and 2 deletions

View file

@ -1,6 +1,12 @@
/**
* This module assembles parser pipelines from parser stages with
* asynchronous communnication between stages based on events. Apart from the
* default pipeline which converts WikiText to HTML DOM, it also provides
* sub-pipelines for the processing of template transclusions.
*
* Simple parser class. Should have lots of options for observing parse stages (or, use events).
* See http://www.mediawiki.org/wiki/Parsoid and
* http://www.mediawiki.org/wiki/Parsoid/Token_stream_transformations
* for illustrations of the pipeline architecture.
*
* @author Gabriel Wicke <gwicke@wikimedia.org>
* @author Neil Kandalgaonkar <neilk@wikimedia.org>

View file

@ -1,5 +1,5 @@
/**
* Command line wikidom parse utility.
* Command line parse utility.
* Read from STDIN, write to STDOUT.
*
* @author Neil Kandalgaonkar <neilk@wikimedia.org>