docs.sheetjs.com/docz/docs/02-getting-started/index.md

38 lines
1.2 KiB
Markdown
Raw Normal View History

2022-08-13 22:01:26 +00:00
---
hide_table_of_contents: true
2022-08-24 23:48:22 +00:00
pagination_next: getting-started/example
2022-08-13 22:01:26 +00:00
---
# Getting Started
2022-10-30 05:45:37 +00:00
["Tutorial"](/docs/getting-started/example) is a live example that covers
general data munging and data export to spreadsheets.
2022-08-13 22:01:26 +00:00
## Installation
import DocCardList from '@theme/DocCardList';
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
<https://cdn.sheetjs.com> is the primary software distribution site. Please
read the installation instructions for your use case:
<ul>{useCurrentSidebarCategory().items.map((item, index) => {
if(item.label != "Installation") return "";
return item.items.map((item, index) => {
const listyle = (item.customProps?.icon) ? {
listStyleImage: `url("${item.customProps.icon}")`
} : {};
return (<li style={listyle} {...(item.customProps?.class ? {className: item.customProps.class}: {})}>
<a href={item.href}>{item.label}</a>{item.customProps?.summary && (" - " + item.customProps.summary)}
</li>);
});
})}</ul>
2023-04-27 09:12:19 +00:00
:::info
[Watch the repo](https://git.sheetjs.com/SheetJS/sheetjs) or subscribe to the
[RSS feed](https://git.sheetjs.com/sheetjs/sheetjs/tags.rss) to be notified when
new versions are released!
:::