File tree 5 files changed +33
-9
lines changed
5 files changed +33
-9
lines changed Original file line number Diff line number Diff line change 12
12
},
13
13
"brand" : {
14
14
"title" : " mte-kernel" ,
15
- "site" : " https://github.com/susisu /mte-kernel" ,
16
- "repository" : " https://github.com/susisu /mte-kernel.git"
15
+ "site" : " https://github.com/tgrosinger /mte-kernel" ,
16
+ "repository" : " https://github.com/tgrosinger /mte-kernel.git"
17
17
},
18
18
"accessor" : {
19
19
"access" : [" public" , " protected" ],
Original file line number Diff line number Diff line change 1
1
Copyright (c) 2017 Susisu
2
+ Copyright (c) 2020 Tony Grosinger
2
3
3
4
Permission is hereby granted, free of charge, to any person obtaining a copy of
4
5
this software and associated documentation files (the "Software"), to deal in
Original file line number Diff line number Diff line change 1
1
# markdown-table-editor kernel
2
2
The text editor independent part of [ atom-markdown-table-editor] [ atom-mte ] .
3
3
4
+ ** 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.
8
+
4
9
![ demo] ( https://github.com/susisu/markdown-table-editor/wiki/images/demo.gif )
5
10
6
11
[ You can try it on your browser!] ( https://susisu.github.io/mte-demo/ )
7
12
8
13
## Installation
9
- ``` shell
10
- npm i -S @susisu/mte-kernel
11
- ```
14
+
15
+ TBD
12
16
13
17
## Usage
14
18
Implement an [ interface to the text editor] [ doc-ITextEditor ] .
@@ -50,4 +54,6 @@ It is also good to look into [atom-markdown-table-editor][atom-mte-repo] as a re
50
54
[ MIT License] ( http://opensource.org/licenses/mit-license.php )
51
55
52
56
## Author
53
- Susisu ([ GitHub] ( https://github.com/susisu ) , [ Twitter] ( https://twitter.com/susisu2413 ) )
57
+
58
+ Original author: Susisu ([ GitHub] ( https://github.com/susisu ) , [ Twitter] ( https://twitter.com/susisu2413 ) )
59
+ Current author: Tony Grosinger ([ Github] ( https://github.com/tgrosinger ) )
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # Use this command just as you would `yarn`.
4
+ # Examples:
5
+ #
6
+ # ./npm help
7
+ # ./npm i # Install dependencies locally using package-lock.json
8
+ # ./npm run eslint
9
+ # ./npm i -E -D "eslint" # Install the eslint package as a dev-only dep
10
+ # ./npm i -E "react" # Install the react package as a dep
11
+
12
+ docker run --rm \
13
+ -v " $( pwd) " :/code \
14
+ -w /code \
15
+ --entrypoint npm \
16
+ node:14.5.0-slim \
17
+ " $@ "
Original file line number Diff line number Diff line change 28
28
},
29
29
"repository" : {
30
30
"type" : " git" ,
31
- "url" : " git+https://github.com/susisu /mte-kernel.git"
31
+ "url" : " git+https://github.com/tgrosinger /mte-kernel.git"
32
32
},
33
33
"author" :
" Susisu <[email protected] > (https://github.com/susisu)" ,
34
34
"license" : " MIT" ,
35
35
"bugs" : {
36
- "url" : " https://github.com/susisu /mte-kernel/issues"
36
+ "url" : " https://github.com/tgrosinger /mte-kernel/issues"
37
37
},
38
- "homepage" : " https://github.com/susisu /mte-kernel#readme" ,
38
+ "homepage" : " https://github.com/tgrosinger /mte-kernel#readme" ,
39
39
"devDependencies" : {
40
40
"babel-core" : " ^6.26.3" ,
41
41
"babel-plugin-transform-es2015-modules-commonjs" : " ^6.26.2" ,
You can’t perform that action at this time.
0 commit comments