Releases: asemio/SZXX
Releases · asemio/SZXX
3.0.0
Breaking change: requires Core v15
New features:
Xml.parser_options
can be passed toXml.make_parser
to accept HTML-style featuresXml.SAX.To_DOM.folder
andXml.SAX.Stream.folder
now take?strict:bool
(default:true
). Whenfalse
, unclosed elements are treated as self-closing elements, HTML-style. For example, a<br>
without a matching</br>
is treated as<br />
.
Together these 2 features enable the use of SZXX.Xml for parsing HTML.
v2.2.0
Breaking changes:
- (XLSX) Renamed type
Xlsx.sst
toXlsx.SST.t
- (XLSX) Replaced function
Xlsx.parse_row
with 2 faster functions:parse_row_with_sst
andparse_row_without_sst
- (XML) Removed type
Xml.SAX.element_open
. It is now inlined withinXml.SAX.node
- (XML) Removed
preserve_space
from multipleXml
types. Use the newpreserve_space
function instead.