README.md in signer-1.4.3 vs README.md in signer-1.5.0

- old
+ new

@@ -226,5 +226,12 @@ signer.digest!(signer.binary_security_token_node) # Constructing tag and digesting it signer.sign! # No need to pass a :security_token option, as we already constructed and inserted this node ``` If you need to use canonicalization with inclusive namespaces you can pass array of namespace prefixes in `:inclusive_namespaces` option in both `digest!` and `sign!` methods. + + +Every new instance of signer has Nokogiri `noblanks` set as default in process of parsing xml file. If you need to disable it, pass opional argument `noblanks: false`. + +``` +Signer.new(File.read("example.xml"), noblanks: false) +```