Vehbi Sinan Tunalioglu
Vehbi Sinan Tunalioglu
This PR closes #142. `formatWorkbook` accumulates cell merge information (`_formattingMerges`) along with style information as it iterates over a list of worksheet data. Indeed, this is necessary for `formatCell` to...
When using [`Codec.Xlsx.Formatted.formatWorkbook`](https://hackage.haskell.org/package/xlsx-0.8.4/docs/Codec-Xlsx-Formatted.html#v:formatWorkbook), it seems that the merge information is accumulating as new worksheets are added. In the below example: 1. `fcm1` has a formatted cell at `(1,1)` with `colspan`...
Latest release on the GitHub repository seems to be v0.7.1. On PyPI, we have v0.8.0. Does that matter?
`autodocodec` documentation [refers](https://hackage.haskell.org/package/autodocodec-0.4.2.2/docs/Autodocodec.html#v:discriminatedUnionCodec) to OpenAPI3 specification for discriminated unions: https://swagger.io/docs/specification/v3_0/data-models/inheritance-and-polymorphism/ The specification provides this example: ```yaml schema: oneOf: - $ref: '#/components/schemas/Object1' - $ref: '#/components/schemas/Object2' - $ref: 'sysObject.json#/sysObject' discriminator: propertyName: objectType...