Method: Teius::Node#xpath
- Defined in:
- ext/teius.c
#xpath ⇒ Object
153 154 155 156 157 |
# File 'ext/teius.c', line 153 static VALUE node_xpath(VALUE self) { xmlNodePtr node = NULL; Data_Get_Struct(self, xmlNode, node); return rb_str_new2((char *)xmlGetNodePath(node)); } |