Jemt / Fit.UI

Fit.UI is a JavaScript based UI framework built on Object Oriented principles
http://fitui.org
GNU Lesser General Public License v3.0
19 stars 7 forks source link

Allow & in XML documentation (SimpleDocs) #161

Open FlowIT-JIT opened 2 years ago

FlowIT-JIT commented 2 years ago

See the example below. This will cause an error in the SimpleDocs parser due to the use of &&. Encoding them as && resolves the problem, but it makes it harder to read the documentation.

/// <function container="Fit.Browser" name="IsMobile" access="public" static="true" returns="boolean">
///     <description>
///         var mobile = Fit.Browser.IsMobile(true) || (Fit.Browser.GetBrowser() === "Safari" && Fit.Browser.IsTouchEnabled())
///     </description>
/// </function>
FlowIT-JIT commented 2 years ago

Make sure we support the following special characters: & < > " '