diff --git a/reference/tidy/functions/ob-tidyhandler.xml b/reference/tidy/functions/ob-tidyhandler.xml
index b788750467..49ed5c2a9f 100755
--- a/reference/tidy/functions/ob-tidyhandler.xml
+++ b/reference/tidy/functions/ob-tidyhandler.xml
@@ -1,5 +1,5 @@
-
+
ob_tidyhandler
@@ -13,8 +13,7 @@
intmode
- ob_tidyhandler is intended to be used as a
- callback function for ob_start to repair the buffer.
+ Callback function for ob_start to repair the buffer.
diff --git a/reference/tidy/functions/tidy-clean-repair.xml b/reference/tidy/functions/tidy-clean-repair.xml
deleted file mode 100644
index ddead6e4e3..0000000000
--- a/reference/tidy/functions/tidy-clean-repair.xml
+++ /dev/null
@@ -1,112 +0,0 @@
-
-
-
-
- tidy_clean_repair
- Execute configured cleanup and repair operations on parsed markup
-
-
- &reftitle.description;
- Procedural style:
-
- booltidy_clean_repair
- tidyobject
-
- Object oriented style:
-
- booltidy->cleanRepair
-
-
-
- This function cleans and repairs the given tidy
- object.
-
-
-
-
- &reftitle.parameters;
-
-
-
- object
-
-
- &tidy.object;
-
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- &return.success;
-
-
-
-
- &reftitle.examples;
-
-
- tidy_clean_repair example
-
-test';
-
-$tidy = tidy_parse_string($html);
-tidy_clean_repair($tidy);
-
-echo $tidy;
-?>
-]]>
-
- &example.outputs;
-
-
-
-
-
-
-
-
test
-
-
-]]>
-
-
-
-
-
-
- &reftitle.seealso;
-
- tidy_repair_file
- tidy_repair_string
-
-
-
-
-
diff --git a/reference/tidy/functions/tidy-construct.xml b/reference/tidy/functions/tidy-construct.xml
deleted file mode 100755
index e0cc0cf63e..0000000000
--- a/reference/tidy/functions/tidy-construct.xml
+++ /dev/null
@@ -1,162 +0,0 @@
-
-
-
-
- tidy::__construct
- Constructs a new tidy object
-
-
- &reftitle.description;
-
- tidytidy::__construct
- stringfilename
- mixedconfig
- stringencoding
- booluse_include_path
-
-
- tidy::__construct constructs a new
- tidy object.
-
-
-
-
- &reftitle.parameters;
-
-
-
- filename
-
-
- If the filename parameter is given, this function
- will also read that file and initialize the object with the file,
- acting like tidy_parse_file.
-
-
-
-
- config
-
-
- The config config can be passed either as an
- array or as a string. If a string is passed, it is interpreted as the
- name of the configuration file, otherwise, it is interpreted as the
- options themselves.
-
-
- For an explanation about each option, visit &url.tidy.conf;.
-
-
-
-
- encoding
-
-
- The encoding parameter sets the encoding for
- input/output documents. The possible values for encoding are:
- ascii, latin0, latin1,
- raw, utf8, iso2022,
- mac, win1252, ibm858,
- utf16, utf16le, utf16be,
- big5, and shiftjis.
-
-
-
-
- use_include_path
-
-
- Search for the file in the include_path.
-
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- Returns the new tidy instance.
-
-
-
-
- &reftitle.examples;
-
-
- tidy::__construct example
-
-
-
-
-title
-
-
paragraph
-text
-
-
-HTML;
-
-$tidy = new tidy;
-$tidy->parseString($html);
-
-$tidy->CleanRepair();
-
-if ($tidy->errorBuffer) {
- echo "The following errors were detected:\n";
- echo $tidy->errorBuffer;
-}
-
-?>
-]]>
-
- &example.outputs;
-
- is not recognized!
-line 8 column 14 - Warning: discarding unexpected
-]]>
-
-
-
-
-
-
- &reftitle.seealso;
-
- tidy_parse_file
- tidy_parse_string
-
-
-
-
-
-
diff --git a/reference/tidy/functions/tidy-diagnose.xml b/reference/tidy/functions/tidy-diagnose.xml
deleted file mode 100644
index d888caf0cf..0000000000
--- a/reference/tidy/functions/tidy-diagnose.xml
+++ /dev/null
@@ -1,122 +0,0 @@
-
-
-
-
- tidy_diagnose
- Run configured diagnostics on parsed and repaired markup
-
-
- &reftitle.description;
- Procedural style:
-
- booltidy_diagnose
- tidyobject
-
- Object oriented style:
-
- booltidy->diagnose
-
-
-
- Runs diagnostic tests on the given tidy object,
- adding some more information about the document in the error buffer.
-
-
-
-
- &reftitle.parameters;
-
-
-
- object
-
-
- &tidy.object;
-
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- &return.success;
-
-
-
-
- &reftitle.examples;
-
-
- tidy_diagnose example
-
-
-
-
paragraph
-HTML;
-
-$tidy = tidy_parse_string($html);
-$tidy->CleanRepair();
-
-// note the difference between the two outputs
-echo tidy_get_error_buffer($tidy) . "\n";
-
-$tidy->diagnose();
-echo tidy_get_error_buffer($tidy);
-
-?>
-]]>
-
- &example.outputs;
-
- isn't allowed in elements
-line 5 column 1 - Warning: inserting missing 'title' element
-
-line 5 column 1 - Warning:
isn't allowed in
elements
-line 5 column 1 - Warning: inserting missing 'title' element
-Info: Doctype given is "-//W3C//DTD XHTML 1.0 Strict//EN"
-Info: Document content looks like XHTML 1.0 Strict
-2 warnings, 0 errors were found!
-]]>
-
-
-
-
-
-
- &reftitle.seealso;
-
- tidy_get_error_buffer
-
-
-
-
-
-
diff --git a/reference/tidy/functions/tidy-get-body.xml b/reference/tidy/functions/tidy-get-body.xml
deleted file mode 100644
index b2b339303e..0000000000
--- a/reference/tidy/functions/tidy-get-body.xml
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
- tidy_get_body
- Returns a tidyNode Object starting from the <body> tag of the tidy parse tree
-
-
- &reftitle.description;
- Procedural style:
-
- tidyNodetidy_get_body
- tidyobject
-
- Object oriented style:
-
- tidyNodetidy->body
-
-
-
- This function returns a tidyNode object starting from the <body>
- tag of the tidy parse tree.
-
-
-
-
- &reftitle.parameters;
-
-
-
- object
-
-
- &tidy.object;
-
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- Returns the detected HTML version.
-
-
-
- This function is not yet implemented in the Tidylib itself, so it always
- return 0.
-
-
-
-
-
- &reftitle.examples;
-
-
- tidy_get_body example
-
-
-
- test
-
-
-