diff --git a/docz/docs/02-getting-started/01-installation/02-frameworks.md b/docz/docs/02-getting-started/01-installation/02-frameworks.md
index 3582658..5a8f594 100644
--- a/docz/docs/02-getting-started/01-installation/02-frameworks.md
+++ b/docz/docs/02-getting-started/01-installation/02-frameworks.md
@@ -7,17 +7,22 @@ sidebar_custom_props:
---
import current from '/version.js';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
import CodeBlock from '@theme/CodeBlock';
# Frameworks and Bundlers
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-
Each standalone release package is available at
https://cdn.sheetjs.com/xlsx-{current}/xlsx-{current}.tgz is the URL for version {current}
+ +## Installation + +Tarballs can be directly installed using a package manager: +1) Download the tarball (xlsx-{current}.tgz
) for the desired version. The current
+ version is available at https://cdn.sheetjs.com/xlsx-{current}/xlsx-{current}.tgz
Spreadsheet | Array of Arrays |
---|---|
+ +![`pres.xlsx` data](pathname:///pres.png) + + | + +```js +[ + ["Name", "Index"], + ["Bill Clinton", 42], + ["GeorgeW Bush", 43], + ["Barack Obama", 44], + ["Donald Trump", 45], + ["Joseph Biden", 46] +] +``` + + |
Spreadsheet | Array of Objects |
---|---|
+ +![`pres.xlsx` data](pathname:///pres.png) + + | + +```js +[ + { Name: "Bill Clinton", Index: 42 }, + { Name: "GeorgeW Bush", Index: 43 }, + { Name: "Barack Obama", Index: 44 }, + { Name: "Donald Trump", Index: 45 }, + { Name: "Joseph Biden", Index: 46 } +] +``` + + |
S | h | e | e | t | J | S |
4 | 5 | 6 | 7 | 8 | 9 | 0 |
Spreadsheet | Operations | |||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
+
+
| + +1) `aoa_to_sheet` writes `A1:G1` (red) + +2) `sheet_add_aoa` writes `A2:B4` (blue) + +3) `sheet_add_aoa` writes `E2:G4` (green) + +4) `sheet_add_aoa` writes `A5:G5` (yellow) + + |