Jump to content

User:Yobot/FixSyntax

From Wikipedia, the free encyclopedia
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
//<summary>Checks if there are any syntax fixes.</summary>
public string ProcessArticle(string ArticleText, string ArticleTitle, int wikiNamespace, out string Summary, out bool Skip)
       {
           string ArticleText2 = WikiFunctions.Parse.Parsers.FixSyntax(ArticleText);
           Skip = (ArticleText2.Equals(ArticleText));
           Summary = "Syntax fixes";
           return ArticleText2;
       }