Click here to Skip to main content
15,886,199 members
Articles / Operating Systems / Windows

A managed wrapper for the HTML Tidy library

Rate me:
Please Sign up or sign in to vote.
4.83/5 (17 votes)
12 Jan 2007CPOL2 min read 140.8K   2.6K   28  
A managed C++ for a small part of the HTML Tidy C library
#ifndef __CLEAN_H__
#define __CLEAN_H__

/* clean.h -- clean up misuse of presentation markup

  (c) 1998-2005 (W3C) MIT, ERCIM, Keio University
  See tidy.h for the copyright notice.

  CVS Info:
    $Author: arnaud02 $ 
    $Date: 2005/02/21 17:20:19 $ 
    $Revision: 1.11 $ 

*/

void RenameElem( Node* node, TidyTagId tid );

void FixNodeLinks(Node *node);

Node* CleanNode( TidyDocImpl* doc, Node* node );

void FreeStyles( TidyDocImpl* doc );

/* Add class="foo" to node
*/
void AddClass( TidyDocImpl* doc, Node* node, ctmbstr classname );

void CleanDocument( TidyDocImpl* doc );

/* simplifies <b><b> ... </b> ...</b> etc. */
void NestedEmphasis( TidyDocImpl* doc, Node* node );

/* replace i by em and b by strong */
void EmFromI( TidyDocImpl* doc, Node* node );

/*
 Some people use dir or ul without an li
 to indent the content. The pattern to
 look for is a list with a single implicit
 li. This is recursively replaced by an
 implicit blockquote.
*/
void List2BQ( TidyDocImpl* doc, Node* node );

/*
 Replace implicit blockquote by div with an indent
 taking care to reduce nested blockquotes to a single
 div with the indent set to match the nesting depth
*/
void BQ2Div( TidyDocImpl* doc, Node* node );


Node *FindEnclosingCell( TidyDocImpl* doc, Node* node );

void DropSections( TidyDocImpl* doc, Node* node );

/* used to hunt for hidden preformatted sections */
Bool NoMargins(Node *node);

/* does element have a single space as its content? */
Bool IsSingleSpace(Lexer *lexer, Node *node);


/*
 This is a major clean up to strip out all the extra stuff you get
 when you save as web page from Word 2000. It doesn't yet know what
 to do with VML tags, but these will appear as errors unless you
 declare them as new tags, such as o:p which needs to be declared
 as inline.
*/
void CleanWord2000( TidyDocImpl* doc, Node *node);

Bool IsWord2000( TidyDocImpl* doc );

/* where appropriate move object elements from head to body */
void BumpObject( TidyDocImpl* doc, Node *html );

/* This is disabled due to http://tidy.sf.net/bug/681116 */
#if 0
void FixBrakes( TidyDocImpl* pDoc, Node *pParent );
#endif

void VerifyHTTPEquiv( TidyDocImpl* pDoc, Node *pParent );

void DropComments(TidyDocImpl* doc, Node* node);
void DropFontElements(TidyDocImpl* doc, Node* node, Node **pnode);
void WbrToSpace(TidyDocImpl* doc, Node* node);
void DowngradeTypography(TidyDocImpl* doc, Node* node);
void ReplacePreformattedSpaces(TidyDocImpl* doc, Node* node);
void NormalizeSpaces(Lexer *lexer, Node *node);
void ConvertCDATANodes(TidyDocImpl* doc, Node* node);

void FixAnchors(TidyDocImpl* doc, Node *node, Bool wantName, Bool wantId);
void FixXhtmlNamespace(TidyDocImpl* doc, Bool wantXmlns);
void FixLanguageInformation(TidyDocImpl* doc, Node* node, Bool wantXmlLang, Bool wantLang);


#endif /* __CLEAN_H__ */

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer Zeta Software GmbH
Germany Germany
Uwe does programming since 1989 with experiences in Assembler, C++, MFC and lots of web- and database stuff and now uses ASP.NET and C# extensively, too. He has also teached programming to students at the local university.

➡️ Give me a tip 🙂

In his free time, he does climbing, running and mountain biking. In 2012 he became a father of a cute boy and in 2014 of an awesome girl.

Some cool, free software from us:

Windows 10 Ereignisanzeige  
German Developer Community  
Free Test Management Software - Intuitive, competitive, Test Plans.  
Homepage erstellen - Intuitive, very easy to use.  
Offline-Homepage-Baukasten

Comments and Discussions