2024-04-12 07:11:07 +00:00
|
|
|
---
|
|
|
|
title: Spreadsheet Features
|
|
|
|
---
|
2022-05-16 03:26:04 +00:00
|
|
|
|
2022-06-27 02:05:36 +00:00
|
|
|
import DocCardList from '@theme/DocCardList';
|
|
|
|
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
|
|
|
|
|
2024-04-12 07:11:07 +00:00
|
|
|
File formats represent data in different ways.
|
|
|
|
|
|
|
|
SheetJS parsers are expected to convert from the underlying file format
|
|
|
|
representation to the Common Spreadsheet Format.
|
|
|
|
|
|
|
|
SheetJS writers are expected to convert from the Common Spreadsheet Format to
|
|
|
|
the relevant file formats.
|
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>
|