Hi,
I am not able to find out a simple example to find out the how the
method works:
Nokogiri::XML::EntityReference::new
(http://nokogiri.org/Nokogiri/XML/EntityReference.html#method-c-new)
Nokogiri::XML::Document#canonicalize
(http://nokogiri.org/Nokogiri/XML/Document.html#method-i-canonicalize)
Thanks
Hi, the examples will be atached to the answer, I hope you can get a
better idea of this methods.
Regards,
Eduardo Figarola.
Eduardo Figarola wrote in post #1111343:
Hi, the examples will be atached to the answer, I hope you can get a
better idea of this methods.
Regards,
Eduardo Figarola.
can anyone tell me what the wrong I did here?
node = Nokogiri::XML::Node.new(“
This text contains
superscript text.
”, doc)
node.description # => nil
Why nil
is coming?
On 5 June 2013 19:10, Love U Ruby [email protected] wrote:
node = Nokogiri::XML::Node.new(
This text contains
I expect you meant the first parameter passed to new to be a string,
so it needs quotes round it
.new(“
…”
Colin