2022-05-16 03:26:04 +00:00
|
|
|
# Spreadsheet Features
|
|
|
|
|
2022-06-27 02:05:36 +00:00
|
|
|
import DocCardList from '@theme/DocCardList';
|
|
|
|
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
|
|
|
|
|
2022-05-16 03:26:04 +00:00
|
|
|
Even for basic features like date storage, the official Excel formats store the
|
|
|
|
same content in different ways. The parsers are expected to convert from the
|
|
|
|
underlying file format representation to the Common Spreadsheet Format. Writers
|
2022-08-25 08:22:28 +00:00
|
|
|
are expected to serialize SheetJS workbooks in the underlying file format.
|
2022-05-16 03:26:04 +00:00
|
|
|
|
2022-06-27 02:05:36 +00:00
|
|
|
The following topics are covered in sub-pages:
|
|
|
|
|
|
|
|
<ul>{useCurrentSidebarCategory().items.map((item, index) => {
|
2022-10-04 20:37:38 +00:00
|
|
|
const cP = item.customProps;
|
|
|
|
const listyle = (cP?.icon) ? { listStyleImage: `url("${cP.icon}")` } : {};
|
|
|
|
return ( <li style={listyle} {...(cP?.class ? {className: cP.class}: {})}>
|
|
|
|
<a href={item.href}>{item.label}</a>{cP?.summary && (" - " + cP.summary)}
|
|
|
|
</li> );
|
2022-06-27 02:05:36 +00:00
|
|
|
})}</ul>
|