├── .github └── stale.yml ├── .gitignore ├── .prettierrc.yaml ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── keymaps └── markdown-table-formatter.cson ├── lib ├── config.js ├── formatTable.js ├── markdown-table-formatter.js ├── regex.js └── table-formatter.js ├── menus └── markdown-table-formatter.cson ├── package.json ├── settings.png ├── spec ├── atom.d.ts ├── duplicate-tests.spec.ts ├── editor.spec.ts ├── fixtures │ ├── empty.md │ ├── empty.text │ ├── test-tables-pref-line-len.md │ └── test-tables.md ├── format.spec.ts ├── global.d.ts ├── markdown-table-formatter.spec.ts ├── regex.spec.ts ├── tables │ ├── non-tables.ts │ └── test-tables-default.ts ├── tsconfig.json ├── tslint.json └── utils.ts ├── src ├── atom.d.ts ├── config.ts ├── formatTable.ts ├── markdown-table-formatter.ts ├── regex.ts └── table-formatter.ts ├── tsconfig.json └── tslint.json /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | # .prettierrc 2 | semi: false 3 | singleQuote: true 4 | trailingComma: 'all' 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/README.md -------------------------------------------------------------------------------- /keymaps/markdown-table-formatter.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/keymaps/markdown-table-formatter.cson -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/lib/config.js -------------------------------------------------------------------------------- /lib/formatTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/lib/formatTable.js -------------------------------------------------------------------------------- /lib/markdown-table-formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/lib/markdown-table-formatter.js -------------------------------------------------------------------------------- /lib/regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/lib/regex.js -------------------------------------------------------------------------------- /lib/table-formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/lib/table-formatter.js -------------------------------------------------------------------------------- /menus/markdown-table-formatter.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/menus/markdown-table-formatter.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/package.json -------------------------------------------------------------------------------- /settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/settings.png -------------------------------------------------------------------------------- /spec/atom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/spec/atom.d.ts -------------------------------------------------------------------------------- /spec/duplicate-tests.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/spec/duplicate-tests.spec.ts -------------------------------------------------------------------------------- /spec/editor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/spec/editor.spec.ts -------------------------------------------------------------------------------- /spec/fixtures/empty.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/empty.text: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/test-tables-pref-line-len.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/spec/fixtures/test-tables-pref-line-len.md -------------------------------------------------------------------------------- /spec/fixtures/test-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/spec/fixtures/test-tables.md -------------------------------------------------------------------------------- /spec/format.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/spec/format.spec.ts -------------------------------------------------------------------------------- /spec/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/spec/global.d.ts -------------------------------------------------------------------------------- /spec/markdown-table-formatter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/spec/markdown-table-formatter.spec.ts -------------------------------------------------------------------------------- /spec/regex.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/spec/regex.spec.ts -------------------------------------------------------------------------------- /spec/tables/non-tables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/spec/tables/non-tables.ts -------------------------------------------------------------------------------- /spec/tables/test-tables-default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/spec/tables/test-tables-default.ts -------------------------------------------------------------------------------- /spec/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/spec/tsconfig.json -------------------------------------------------------------------------------- /spec/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/spec/tslint.json -------------------------------------------------------------------------------- /spec/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/spec/utils.ts -------------------------------------------------------------------------------- /src/atom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/src/atom.d.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/formatTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/src/formatTable.ts -------------------------------------------------------------------------------- /src/markdown-table-formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/src/markdown-table-formatter.ts -------------------------------------------------------------------------------- /src/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/src/regex.ts -------------------------------------------------------------------------------- /src/table-formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/src/table-formatter.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrespo82/atom-markdown-table-formatter/HEAD/tslint.json --------------------------------------------------------------------------------