docs.sheetjs.com/docz/docs/12-constellation/index.md

20 lines
697 B
Markdown
Raw Permalink Normal View History

2023-10-24 06:20:57 +00:00
---
title: SheetJS Constellation
pagination_prev: miscellany/index
---
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
Many related projects have been separated into dedicated libraries.
### Contents
<ul>{useCurrentSidebarCategory().items.map(globalThis.lambda = (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)}
<ul>{item.items && item.items.map(lambda)}</ul>
</li>);
})}</ul>