KD2 Framework  Check-in [63871b255a]

Overview
Comment:Missing doc
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 63871b255afe5d0aa27a3266b26174d4cfd846a8
User & Date: bohwaz on 2023-03-26 23:54:14
Other Links: manifest | tags
Context
2023-03-27
01:04
ZipWriter: fix warning for ODF validation check-in: b94b4c3392 user: bohwaz tags: trunk
2023-03-26
23:54
Missing doc check-in: 63871b255a user: bohwaz tags: trunk
23:51
Add License check-in: 8997ff4276 user: bohwaz tags: trunk
Changes

Modified src/lib/KD2/HTML/TableToODS.php from [fbb9b2dff2] to [205f8ea001].

14
15
16
17
18
19
20



21
22
23
24
25
26
27
 *
 * - a basic set of CSS properties are supported!
 * - colspan (but not rowspan)
 * - automatic column width
 * - custom CSS properties
 * - each table is handled as a sheet, the <caption> will act as the name of the sheet
 * - detection of cell type, or force cell type using '-spreadsheet-cell-type'



 *
 * What is NOT supported:
 * - rowspan
 * - formulas
 *
 * Usage: $ods = new TableToODS; $ods->import('<table...</table>'); $ods->save('file.ods');
 *







>
>
>







14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 *
 * - a basic set of CSS properties are supported!
 * - colspan (but not rowspan)
 * - automatic column width
 * - custom CSS properties
 * - each table is handled as a sheet, the <caption> will act as the name of the sheet
 * - detection of cell type, or force cell type using '-spreadsheet-cell-type'
 * - provide the real number via the "data-spreadsheet-number" HTML attribute
 *   (eg. if the number is displayed as a graph, or something like that)
 * - provide the real date via the "data-spreadsheet-date" attribute
 *
 * What is NOT supported:
 * - rowspan
 * - formulas
 *
 * Usage: $ods = new TableToODS; $ods->import('<table...</table>'); $ods->save('file.ods');
 *