Method: Nokogiri::XML::Document#encoding
- Defined in:
- ext/nokogiri/xml_document.c
#encoding ⇒ Object
Get the encoding for this Document
336 337 338 339 340 341 342 343 |
# File 'ext/nokogiri/xml_document.c', line 336
static VALUE
encoding(VALUE self)
{
xmlDocPtr doc = noko_xml_document_unwrap(self);
if (!doc->encoding) { return Qnil; }
return NOKOGIRI_STR_NEW2(doc->encoding);
}
|