docs.sheetjs.com/docz/docs/03-demos/32-extensions/index.md

25 lines
993 B
Markdown
Raw Normal View History

2023-01-14 03:13:35 +00:00
---
title: Extensions
2023-02-28 11:40:44 +00:00
pagination_prev: demos/cloud/index
pagination_next: demos/bigdata/index
2023-01-14 03:13:35 +00:00
---
import DocCardList from '@theme/DocCardList';
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
Thanks to the broad availability of powerful engines, JavaScript is a popular
language for writing extensions for apps. Some applications like Chromium use V8
while others use engines that only support ES3 JavaScript. With conservative use
of modern language features, SheetJS can be used in many app extensions.
2023-06-25 19:57:03 +00:00
Demos for common applications are included in separate pages:
2023-01-14 03:13:35 +00:00
<ul>{useCurrentSidebarCategory().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>