docs.sheetjs.com/docz/docs/07-csf/07-features/index.md

25 lines
821 B
Markdown
Raw Normal View History

---
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';
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>