2017-03-29 19:14:15 +00:00
|
|
|
# Summary
|
|
|
|
|
2017-07-05 22:27:54 +00:00
|
|
|
- [xlsx](README.md#sheetjs-js-xlsx)
|
2022-02-04 05:29:01 +00:00
|
|
|
- [Getting Started](README.md#getting-started)
|
|
|
|
* [Installation](README.md#installation)
|
2022-04-16 01:19:21 +00:00
|
|
|
+ [Standalone Browser Scripts](README.md#standalone-browser-scripts)
|
|
|
|
+ [ECMAScript Modules](README.md#ecmascript-modules)
|
|
|
|
+ [Deno](README.md#deno)
|
|
|
|
+ [NodeJS](README.md#nodejs)
|
|
|
|
+ [Photoshop and InDesign](README.md#photoshop-and-indesign)
|
2022-02-04 05:29:01 +00:00
|
|
|
* [Usage](README.md#usage)
|
2022-02-05 13:59:25 +00:00
|
|
|
* [The Zen of SheetJS](README.md#the-zen-of-sheetjs)
|
2017-03-29 19:14:15 +00:00
|
|
|
* [JS Ecosystem Demos](README.md#js-ecosystem-demos)
|
2022-02-05 13:59:25 +00:00
|
|
|
- [Acquiring and Extracting Data](README.md#acquiring-and-extracting-data)
|
|
|
|
* [Parsing Workbooks](README.md#parsing-workbooks)
|
|
|
|
* [Processing JSON and JS Data](README.md#processing-json-and-js-data)
|
|
|
|
* [Processing HTML Tables](README.md#processing-html-tables)
|
2022-03-03 08:35:39 +00:00
|
|
|
- [Processing Data](README.md#processing-data)
|
|
|
|
* [Modifying Workbook Structure](README.md#modifying-workbook-structure)
|
|
|
|
* [Modifying Cell Values](README.md#modifying-cell-values)
|
|
|
|
* [Modifying Other Worksheet / Workbook / Cell Properties](README.md#modifying-other-worksheet--workbook--cell-properties)
|
2022-02-08 09:50:51 +00:00
|
|
|
- [Packaging and Releasing Data](README.md#packaging-and-releasing-data)
|
|
|
|
* [Writing Workbooks](README.md#writing-workbooks)
|
2017-07-05 22:27:54 +00:00
|
|
|
* [Writing Examples](README.md#writing-examples)
|
2017-04-16 04:32:13 +00:00
|
|
|
* [Streaming Write](README.md#streaming-write)
|
2022-02-08 09:50:51 +00:00
|
|
|
* [Generating JSON and JS Data](README.md#generating-json-and-js-data)
|
|
|
|
* [Generating HTML Tables](README.md#generating-html-tables)
|
2022-03-03 08:35:39 +00:00
|
|
|
* [Generating Single-Worksheet Snapshots](README.md#generating-single-worksheet-snapshots)
|
2017-03-29 19:14:15 +00:00
|
|
|
- [Interface](README.md#interface)
|
|
|
|
* [Parsing functions](README.md#parsing-functions)
|
|
|
|
* [Writing functions](README.md#writing-functions)
|
|
|
|
* [Utilities](README.md#utilities)
|
2017-04-03 00:16:03 +00:00
|
|
|
- [Common Spreadsheet Format](README.md#common-spreadsheet-format)
|
2017-03-29 19:14:15 +00:00
|
|
|
* [General Structures](README.md#general-structures)
|
|
|
|
* [Cell Object](README.md#cell-object)
|
|
|
|
+ [Data Types](README.md#data-types)
|
|
|
|
+ [Dates](README.md#dates)
|
2017-03-31 21:46:02 +00:00
|
|
|
* [Sheet Objects](README.md#sheet-objects)
|
2017-04-01 07:32:12 +00:00
|
|
|
+ [Worksheet Object](README.md#worksheet-object)
|
|
|
|
+ [Chartsheet Object](README.md#chartsheet-object)
|
2017-10-02 08:15:36 +00:00
|
|
|
+ [Macrosheet Object](README.md#macrosheet-object)
|
|
|
|
+ [Dialogsheet Object](README.md#dialogsheet-object)
|
2017-03-29 19:14:15 +00:00
|
|
|
* [Workbook Object](README.md#workbook-object)
|
2017-04-01 07:32:12 +00:00
|
|
|
+ [Workbook File Properties](README.md#workbook-file-properties)
|
2017-04-11 22:15:36 +00:00
|
|
|
* [Workbook-Level Attributes](README.md#workbook-level-attributes)
|
|
|
|
+ [Defined Names](README.md#defined-names)
|
2017-12-30 05:40:35 +00:00
|
|
|
+ [Workbook Views](README.md#workbook-views)
|
2017-06-01 21:22:11 +00:00
|
|
|
+ [Miscellaneous Workbook Properties](README.md#miscellaneous-workbook-properties)
|
2017-03-29 19:14:15 +00:00
|
|
|
* [Document Features](README.md#document-features)
|
|
|
|
+ [Formulae](README.md#formulae)
|
2022-02-04 05:29:01 +00:00
|
|
|
+ [Row and Column Properties](README.md#row-and-column-properties)
|
2017-04-30 16:27:03 +00:00
|
|
|
+ [Number Formats](README.md#number-formats)
|
2017-03-29 19:14:15 +00:00
|
|
|
+ [Hyperlinks](README.md#hyperlinks)
|
2017-04-02 06:47:25 +00:00
|
|
|
+ [Cell Comments](README.md#cell-comments)
|
2017-03-31 18:46:42 +00:00
|
|
|
+ [Sheet Visibility](README.md#sheet-visibility)
|
2017-10-02 08:15:36 +00:00
|
|
|
+ [VBA and Macros](README.md#vba-and-macros)
|
2017-03-29 19:14:15 +00:00
|
|
|
- [Parsing Options](README.md#parsing-options)
|
|
|
|
* [Input Type](README.md#input-type)
|
|
|
|
* [Guessing File Type](README.md#guessing-file-type)
|
|
|
|
- [Writing Options](README.md#writing-options)
|
|
|
|
* [Supported Output Formats](README.md#supported-output-formats)
|
|
|
|
* [Output Type](README.md#output-type)
|
|
|
|
- [Utility Functions](README.md#utility-functions)
|
|
|
|
* [Array of Arrays Input](README.md#array-of-arrays-input)
|
2017-05-11 18:23:21 +00:00
|
|
|
* [Array of Objects Input](README.md#array-of-objects-input)
|
2017-03-29 19:14:15 +00:00
|
|
|
* [HTML Table Input](README.md#html-table-input)
|
|
|
|
* [Formulae Output](README.md#formulae-output)
|
2017-04-03 00:16:03 +00:00
|
|
|
* [Delimiter-Separated Output](README.md#delimiter-separated-output)
|
|
|
|
+ [UTF-16 Unicode Text](README.md#utf-16-unicode-text)
|
2017-05-16 17:45:35 +00:00
|
|
|
* [HTML Output](README.md#html-output)
|
2017-03-29 19:14:15 +00:00
|
|
|
* [JSON](README.md#json)
|
|
|
|
- [File Formats](README.md#file-formats)
|
|
|
|
- [Testing](README.md#testing)
|
2017-04-13 17:05:42 +00:00
|
|
|
* [Node](README.md#node)
|
|
|
|
* [Browser](README.md#browser)
|
2017-03-29 19:14:15 +00:00
|
|
|
* [Tested Environments](README.md#tested-environments)
|
|
|
|
* [Test Files](README.md#test-files)
|
|
|
|
- [Contributing](README.md#contributing)
|
2017-04-09 07:11:08 +00:00
|
|
|
* [OSX/Linux](README.md#osxlinux)
|
|
|
|
* [Windows](README.md#windows)
|
2017-05-16 17:45:35 +00:00
|
|
|
* [Tests](README.md#tests)
|
2017-03-29 19:14:15 +00:00
|
|
|
- [License](README.md#license)
|
2022-01-10 18:45:50 +00:00
|
|
|
- [References](README.md#references)
|