docs.sheetjs.com/README.md

38 lines
892 B
Markdown
Raw Normal View History

2022-05-16 03:26:04 +00:00
# SheetJS CE Docs
2022-05-11 21:03:03 +00:00
2022-05-16 03:26:04 +00:00
Hosted URL: <https://docs.sheetjs.com>
2022-08-26 19:21:53 +00:00
## Development
`docz/version.js` exports a version number for use in docs pages.
Build commands:
```bash
$ make init # install dependencies
$ make # build static site
$ make serve # serve static site
$ make dev # run dev server
$ make spell # spell check (.spelling custom dictionary)
$ make graph # build format graph and legend
```
## Live Demos
**Imports do not work from live codeblocks!**
<https://cdn.sheetjs.com/xlsx-latest/package/dist/xlsx.full.min.js> is loaded
on each page, making the `XLSX` variable available to live blocks.
Specific pages can load scripts using the `head` component:
```html
<head>
<script src="https://cdn.sheetjs.com/xspreadsheet/xlsxspread.min.js"></script>
</head>
```
2023-06-20 01:21:34 +00:00
## Other Notes
`src/theme/Admonition` was swizzled from 2.4.1 to address Docusaurus issue 8568