Example #1
0
 /**
  * Cleanup HTML code (requires HTML Tidy library).
  * @param $html (string) htmlcode to fix
  * @param $default_css (string) CSS commands to add
  * @param $tagvs (array) parameters for setHtmlVSpace method
  * @param $tidy_options (array) options for tidy_parse_string function
  * @return string XHTML code cleaned up
  * @author Nicola Asuni
  * @public
  * @since 5.9.017 (2010-11-16)
  * @see setHtmlVSpace()
  */
 public function fixHTMLCode($html, $default_css = '', $tagvs = '', $tidy_options = '')
 {
     return TCPDF_STATIC::fixHTMLCode($html, $default_css, $tagvs, $tidy_options, $this->tagvspaces);
 }