forked from sheetjs/docs.sheetjs.com
		
	
		
			
	
	
		
			20 lines
		
	
	
		
			697 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
		
		
			
		
	
	
			20 lines
		
	
	
		
			697 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| 
								 | 
							
								---
							 | 
						||
| 
								 | 
							
								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>
							 |