ocaml-ooxml
ocaml-ooxml copied to clipboard
OCaml parsers for Office Open XML and XLSX (Excel) documents
Updated base and fixed few problems with bisect. Should fix #12
open_packaging is bind to [base v0.11.1](https://github.com/brendanlong/ocaml-ooxml/blob/master/open_packaging.opam#L15). As a consequence, the project cannot be installed in environment with ocaml >= 4.07. Is this intended ?
When exporting .xlsx files from Numbers on the Mac it is possible to get an alternative capitalisation of the name of the `general` cell format. Fixes #15
Hi, Thanks for the library. I was using this with an xlsx document produced through Numbers on the Mac. While reading the sheet, I got `Got format string with ID...
I'm no expert on reading those formats, but would it be hard to support old xls files? Or it's a totally different unrelated task?
Pure Zip
The README says the following under a TODO: > Make a pure-OCaml ZIP library. Then we won't need any system dependencies and should work with js_of_ocaml too. I've been quite...
Rather than having parsing for ever element, it would be nice if we could just read the XSD files and generate code from that. Maybe write a `ppx_xsd`?
`classify_format` uses a crazy regex and several `String.contains` checks. We should replace it with a Menhir parser, which would be substantially faster and probably more readable. Note: I don't know...
We only really use `ppx_sexp_conv`. The complexity here will be making jbuilder happy.