Skip to content

Commit 2ce5f85

Browse files
committed
chore: readme
1 parent 8557c69 commit 2ce5f85

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed

README.md

+13-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Grid.js
22

33
<p align="center">
4-
<a href="https://gridjs.io" target="_blank">
5-
<img src="./assets/logo/logo_name.png" height="200" alt="Grid.js" />
6-
</a>
4+
<a href="https://gridjs.io" target="_blank">
5+
<img src="./assets/logo/logo_name.png" height="200" alt="Grid.js" />
6+
</a>
77
</p>
8-
<p align="center">Fast and extensible table library.</p>
8+
<p align="center">Advanced table plugin</p>
99

1010
**A table library that works everywhere**
1111

@@ -14,23 +14,28 @@
1414
- Written in TypeScript
1515
- Supports all modern browsers and IE11+
1616

17-
1817
## Example
1918

20-
2119
```js
2220
new Grid({
2321
data: [
2422
['Mike', 33, '[email protected]'],
2523
['John', 82, '[email protected]'],
2624
['Sara', 26, '[email protected]']
2725
],
28-
header: ['Name', 'Age', 'Email']
29-
}).createElement();
26+
columns: ['Name', 'Age', 'Email']
27+
}).render(document.getElementById('wrapper'));
3028
```
3129

3230
Piece of :cake:
3331

32+
## Getting Started
33+
34+
- [Install](https://gridjs.io/docs/index)
35+
- [Getting Started](https://gridjs.io/docs/index)
36+
- [Documentation](https://gridjs.io/docs/index)
37+
- [Examples](https://gridjs.io/docs/examples/hello-world)
38+
3439
## License
3540

3641
[MIT](https://github.com/grid-js/gridjs/blob/master/LICENSE)

examples/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Moved to [gridjs.io/docs/examples](https://gridjs.io/docs/examples/hello-world)
1+
## Moved to [gridjs.io/docs/examples](https://gridjs.io/docs/examples/hello-world)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gridjs",
3-
"version": "0.1.8",
3+
"version": "0.1.9",
44
"description": "Advanced table plugin",
55
"homepage": "https://gridjs.io",
66
"main": "dist/gridjs.production.min.js",

0 commit comments

Comments
 (0)