Skip to content

Commit

Permalink
Prepare for rebranding
Browse files Browse the repository at this point in the history
  • Loading branch information
tgrosinger committed Nov 3, 2020
1 parent 137e6d8 commit 13529a5
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 17 deletions.
17 changes: 11 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# markdown-table-editor kernel
The text editor independent part of [atom-markdown-table-editor][atom-mte].
# Markdown Advanced Tables

This library can be used by any text editor to enable formatting and
Excel-style navigation to Markdown tables.

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

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

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

## Usage

Implement an [interface to the text editor][doc-ITextEditor].

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

## License

[MIT License](http://opensource.org/licenses/mit-license.php)

## Author

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

Original author: Susisu ([GitHub](https://github.com/susisu), [Twitter](https://twitter.com/susisu2413))
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 25 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
{
"name": "@susisu/mte-kernel",
"version": "2.1.0",
"description": "The text editor independent part of markdown-table-editor",
"name": "@tgrosinger/md-advanced-tables",
"version": "3.0.0",
"description": "A text editor independent library for advanced manipulation and formatting to markdown tables.",
"keywords": [
"markdown",
"table",
"text",
"editor",
"format",
"formatter"
"formatter",
"spreadsheet",
"org-mode"
],
"files": [
"lib",
"dist"
],
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"lint": "eslint lib test --ext .ts --fix",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'test/*.ts'",
Expand All @@ -25,14 +30,25 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/tgrosinger/mte-kernel.git"
"url": "git+https://github.com/tgrosinger/md-advanced-tables.git"
},
"author": {
"name": "Tony Grosinger",
"email": "[email protected]",
"url": "https://github.com/tgrosinger"
},
"author": "Susisu <[email protected]> (https://github.com/susisu)",
"contributors": [
{
"name": "Susisu",
"email": "[email protected]",
"url": "https://github.com/susisu"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tgrosinger/mte-kernel/issues"
"url": "https://github.com/tgrosinger/md-advanced-tables/issues"
},
"homepage": "https://github.com/tgrosinger/mte-kernel#readme",
"homepage": "https://github.com/tgrosinger/md-advanced-tables#readme",
"devDependencies": {
"@rollup/plugin-typescript": "6.1.0",
"@types/chai": "4.2.14",
Expand Down

0 comments on commit 13529a5

Please sign in to comment.