Skip to content

Commit 664ed54

Browse files
authored
Update README.md
1 parent 08aca81 commit 664ed54

1 file changed

Lines changed: 9 additions & 5 deletions

File tree

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,21 +35,21 @@ $ npm install tableexport
3535

3636
### Dependencies
3737

38-
##### Required:
38+
#### Required:
3939

4040
* [jQuery](https://jquery.com) (1.2.1 or higher) `*`
4141
* [FileSaver.js](https://github.com/eligrey/FileSaver.js/)
4242

4343
> `*` jQuery dependency requirement is removed as of [4.0.0-alpha.1](https://github.com/clarketm/TableExport/tree/v4.0.0-alpha.1)
4444
45-
##### Optional / Theming:
45+
#### Optional / Theming:
4646

4747
* [Bootstrap](http://getbootstrap.com/getting-started/#download) (3.1.0 or higher)
4848

49-
##### Add-Ons:
49+
#### Add-Ons:
5050
In order to provide **Office Open XML SpreadsheetML Format ( .xlsx )** support, you must include the following third-party script to your project before [FileSaver.js](https://github.com/eligrey/FileSaver.js/) and [TableExport.js](https://www.travismclarke.com/tableexport).
5151

52-
* SheetJS -> [xlsx-core.js](https://github.com/SheetJS/js-xlsx)
52+
* [xlsx-core.js](https://github.com/SheetJS/js-xlsx) by _SheetJS_
5353

5454
```html
5555
<script src="xlsx-core.js"></script>
@@ -58,8 +58,12 @@ In order to provide **Office Open XML SpreadsheetML Format ( .xlsx )** support,
5858
<script src="tableexport.js"></script>
5959
```
6060

61+
#### Older Browsers:
6162
To support older browsers ( **Chrome** < 20, **Firefox** < 13, **Opera** < 12.10, **IE** < 10, __Safari *__ < 6 ) also include the [Blob.js](https://github.com/clarketm/Blob.js/) polyfill before the [FileSaver.js](https://github.com/eligrey/FileSaver.js/) script.
62-
> \* until [Safari](https://github.com/eligrey/FileSaver.js/issues/242) provides native support for either the [HTML5 download attribute](http://caniuse.com/#feat=download) or [service workers](http://caniuse.com/#search=service%20workers), limited `xlx` and `xlsx` support is provided by including the [Blob.js](https://github.com/clarketm/Blob.js/) polyfill, albeit the **filename** will always be labeled `unknown`.
63+
64+
Until [Safari](https://github.com/eligrey/FileSaver.js/issues/242) provides native support for either the [HTML5 download attribute](http://caniuse.com/#feat=download) or [service workers](http://caniuse.com/#search=service%20workers), limited `xlx` and `xlsx` support is provided by including the [Blob.js](https://github.com/clarketm/Blob.js/) polyfill, albeit the **filename** will always be labeled `unknown`.
65+
66+
* [Blob.js](https://github.com/clarketm/Blob.js) by _clarketm_
6367

6468
```html
6569
<script src="xlsx-core.js"></script>

0 commit comments

Comments
 (0)