Sha256: f8defbfabcfd4e95db1a3de8d5742a1212c1a5ff0bab7624d239fe6c3547b84c

Contents?: true

Size: 1.45 KB

Versions: 10

Compression:

Stored size: 1.45 KB

Contents

/* Please see the LICENSE file for copyright and distribution information */

#include "ruby_libxml.h"

/* Document-class: LibXML::XML::HTMLParser::Options
 *
 * Options to control the operation of the HTMLParser.  The easiest
 * way to set a parser's options is via the methods
 * XML::HTMLParser.file, XML::HTMLParser.io or XML::HTMLParser.string.
 * For additional control, see XML::HTMLParser::Context#options=.
*/

VALUE mXMLHtmlParserOptions;

void rxml_init_html_parser_options(void)
{
  mXMLHtmlParserOptions = rb_define_module_under(cXMLHtmlParser, "Options");


#if LIBXML_VERSION >= 20621
  /* 1: Relax parsing. */
  rb_define_const(mXMLHtmlParserOptions, "RECOVER", INT2NUM(HTML_PARSE_RECOVER)); 
#endif
  /* 32: Suppress error reports. */
  rb_define_const(mXMLHtmlParserOptions, "NOERROR", INT2NUM(HTML_PARSE_NOERROR)); 
  /* 64: Suppress warning reports. */
  rb_define_const(mXMLHtmlParserOptions, "NOWARNING", INT2NUM(HTML_PARSE_NOWARNING));
  /* 128: Enable pedantic error reporting. */
  rb_define_const(mXMLHtmlParserOptions, "PEDANTIC", INT2NUM(HTML_PARSE_PEDANTIC)); 
  /* 256: Remove blank nodes. */
  rb_define_const(mXMLHtmlParserOptions, "NOBLANKS", INT2NUM(HTML_PARSE_NOBLANKS)); 
#if LIBXML_VERSION >= 20621
  /* 2048: Forbid network access. */
  rb_define_const(mXMLHtmlParserOptions, "NONET", INT2NUM(HTML_PARSE_NONET)); 
  /* 65536: Compact small text nodes. */
  rb_define_const(mXMLHtmlParserOptions, "COMPACT", INT2NUM(HTML_PARSE_COMPACT));
#endif
}

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
libxml-ruby-2.0.6-x86-mingw32 ext/libxml/ruby_xml_html_parser_options.c
libxml-ruby-2.0.6 ext/libxml/ruby_xml_html_parser_options.c
libxml-ruby-2.0.5-x86-mingw32 ext/libxml/ruby_xml_html_parser_options.c
libxml-ruby-2.0.5 ext/libxml/ruby_xml_html_parser_options.c
libxml-ruby-2.0.4-x86-mingw32 ext/libxml/ruby_xml_html_parser_options.c
libxml-ruby-2.0.4 ext/libxml/ruby_xml_html_parser_options.c
libxml-ruby-2.0.3-x86-mingw32 ext/libxml/ruby_xml_html_parser_options.c
libxml-ruby-2.0.3 ext/libxml/ruby_xml_html_parser_options.c
libxml-ruby-2.0.2-x86-mingw32 ext/libxml/ruby_xml_html_parser_options.c
libxml-ruby-2.0.2 ext/libxml/ruby_xml_html_parser_options.c