xlnt/tests
Xpol Wan c18110e282 add support for one cell with different formatted text nodes.
Eg, In one cell the text is abcdef, where abc and def have different format (e.g., different colours or fonts).
The the sharedString.xml in xlsx have multiple r node in si node:

```xml
    <si>
        <r>
            <t>abc</t>
        </r>
        <r>
            <rPr><sz val="10"/><color rgb="FFFF0000"/><rFont val="微软雅黑"/><charset val="134"/></rPr>
            <t>def</t>
        </r>
    </si>
```

Currently `shared_strings_serializer::read_shared_strings()` only reads the first r node, and should consider as a bug.

This commit fixes this bug by read all `r.t.text` values in one `si` node and concat the text into one single string.
2016-05-14 16:24:21 +08:00
..
data add support for one cell with different formatted text nodes. 2016-05-14 16:24:21 +08:00
helpers improve build 2016-01-16 21:07:02 -08:00
schemas restructure to match openpyxl 2.1 2014-06-05 16:19:31 -04:00
runner-autogen.cpp fix cmake pre build step 2015-10-26 16:26:47 -04:00