Skip to content

Commit 13529a5

Browse files
committed
Prepare for rebranding
1 parent 137e6d8 commit 13529a5

File tree

3 files changed

+38
-17
lines changed

3 files changed

+38
-17
lines changed

README.md

+11-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
# markdown-table-editor kernel
2-
The text editor independent part of [atom-markdown-table-editor][atom-mte].
1+
# Markdown Advanced Tables
2+
3+
This library can be used by any text editor to enable formatting and
4+
Excel-style navigation to Markdown tables.
35

46
**Note:** This was originally created by [@susisu](https://github.com/susisu).
5-
*This fork is intended to convert the project to Typescript and start adding
6-
*additional functionality such as table sorting, and possibly even basic
7-
*spreadsheet capabilities.
7+
This fork is intended to convert the project to Typescript and start adding
8+
additional functionality such as table sorting, and possibly even basic
9+
spreadsheet capabilities.
810

911
![demo](https://github.com/susisu/markdown-table-editor/wiki/images/demo.gif)
1012

@@ -15,6 +17,7 @@ The text editor independent part of [atom-markdown-table-editor][atom-mte].
1517
TBD
1618

1719
## Usage
20+
1821
Implement an [interface to the text editor][doc-ITextEditor].
1922

2023
``` javascript
@@ -51,9 +54,11 @@ It is also good to look into [atom-markdown-table-editor][atom-mte-repo] as a re
5154
[atom-mte-repo]: https://github.com/susisu/atom-markdown-table-editor
5255

5356
## License
57+
5458
[MIT License](http://opensource.org/licenses/mit-license.php)
5559

5660
## Author
5761

58-
Original author: Susisu ([GitHub](https://github.com/susisu), [Twitter](https://twitter.com/susisu2413))
5962
Current author: Tony Grosinger ([Github](https://github.com/tgrosinger))
63+
64+
Original author: Susisu ([GitHub](https://github.com/susisu), [Twitter](https://twitter.com/susisu2413))

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+25-9
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,24 @@
11
{
2-
"name": "@susisu/mte-kernel",
3-
"version": "2.1.0",
4-
"description": "The text editor independent part of markdown-table-editor",
2+
"name": "@tgrosinger/md-advanced-tables",
3+
"version": "3.0.0",
4+
"description": "A text editor independent library for advanced manipulation and formatting to markdown tables.",
55
"keywords": [
66
"markdown",
77
"table",
88
"text",
99
"editor",
1010
"format",
11-
"formatter"
11+
"formatter",
12+
"spreadsheet",
13+
"org-mode"
1214
],
1315
"files": [
14-
"lib",
1516
"dist"
1617
],
18+
"directories": {
19+
"lib": "lib",
20+
"test": "test"
21+
},
1722
"scripts": {
1823
"lint": "eslint lib test --ext .ts --fix",
1924
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'test/*.ts'",
@@ -25,14 +30,25 @@
2530
},
2631
"repository": {
2732
"type": "git",
28-
"url": "git+https://github.com/tgrosinger/mte-kernel.git"
33+
"url": "git+https://github.com/tgrosinger/md-advanced-tables.git"
34+
},
35+
"author": {
36+
"name": "Tony Grosinger",
37+
"email": "[email protected]",
38+
"url": "https://github.com/tgrosinger"
2939
},
30-
"author": "Susisu <[email protected]> (https://github.com/susisu)",
40+
"contributors": [
41+
{
42+
"name": "Susisu",
43+
"email": "[email protected]",
44+
"url": "https://github.com/susisu"
45+
}
46+
],
3147
"license": "MIT",
3248
"bugs": {
33-
"url": "https://github.com/tgrosinger/mte-kernel/issues"
49+
"url": "https://github.com/tgrosinger/md-advanced-tables/issues"
3450
},
35-
"homepage": "https://github.com/tgrosinger/mte-kernel#readme",
51+
"homepage": "https://github.com/tgrosinger/md-advanced-tables#readme",
3652
"devDependencies": {
3753
"@rollup/plugin-typescript": "6.1.0",
3854
"@types/chai": "4.2.14",

0 commit comments

Comments
 (0)