JsDuck
======
Simple JavaScript Duckumentation generator.
           ,~~.
          (  6 )-_,
     (\___ )=='-'
      \ .   ) )
       \ `-' /    hjw
    ~'`~'`~'`~'`~
JsDuck aims to be a better documentation generator for [ExtJS][].
While it tries to do everything that [ext-doc][] does, it isn't
satisfied with it and aims to make your life much easier.
Basically JsDuck thinks that the following doc-comment really sucks:
    /**
     * @class Ext.form.TextField
     * @extends Ext.form.Field
     * 
Basic text field.  Can be used as a direct replacement for traditional
     * text inputs, or as the base class for more sophisticated input controls
     * (like {@link Ext.form.TextArea} and {@link Ext.form.ComboBox}).
     * Validation
     * The validation procedure is described in the documentation for
     * {@link #validateValue}.
     * Alter Validation Behavior
     * Validation behavior for each field can be configured:
     * 
     * - {@link Ext.form.TextField#invalidText invalidText}:
     * the default validation message to show if any validation step above does
     * not provide a message when invalid
*- {@link Ext.form.TextField#maskRe maskRe}:
     * filter out keystrokes before any validation occurs
*- {@link Ext.form.TextField#stripCharsRe stripCharsRe}:
     * filter characters after being typed in, but before being validated
*