File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77.gitignore
88tsconfig.json
99vsc-extension-quickstart.md
10+ .travis.yml
11+ demonstration.md
Original file line number Diff line number Diff line change 11# Change Log
2- All notable changes to the " markdowntableprettify" extension will be documented in this file.
2+ All notable changes to the ` markdowntableprettify ` extension will be documented in this file.
33
4- Check [ Keep a Changelog] ( http://keepachangelog.com/ ) for recommendations on how to structure this file .
4+ The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ ) and this project adheres to [ Semantic Versioning ] ( http://semver.org/ ) .
55
66## [ Unreleased]
7- - Initial release
7+
8+ ## 1.0.0 - 2017-04-03
9+ ### Added
10+ - Support to format individual tables with right click -> format selection.
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ Makes tables more readable for humans. Compatible with the Markdown writer plugi
88
99- Remove redundant ending table border if the beginning has no border, so the table _ will not end_ with "|".
1010- Create missing ending table border if the beginning already has a border, so the table _ will end_ with "|".
11+ - Save space by not right-padding the last column if the table has no border.
12+ - Support empty columns inside tables.
1113
1214![ feature X] ( assets/animation.gif )
1315
@@ -17,5 +19,4 @@ The extension is available for markdown (_.md_) files. To format a table just se
1719
1820## Known Issues
1921
20- - Formatting multiple tables at once and formatting an entire file is not supported.
21- - The extension is not yet published.
22+ - Formatting multiple tables at once and formatting an entire file is not supported.
Original file line number Diff line number Diff line change 1+ # Hello World!
2+
3+ This is a quick demonstration of the extension features.
4+
5+ Invalid table:
6+ property|
7+ -|
8+
9+ Remove redundant ending table border if the beginning has no border:
10+ Primitive Type|Size(bit)|Wrapper Class|
11+ -|-|-|
12+ byte|8|Byte|
13+ char|16|Character|
14+ short|16|Short|
15+ int|32|Integer|
16+
17+ Create missing ending table border if the beginning already has a border:
18+ |Primitive Type|Size(bit)|Wrapper
19+ | -| -| -|
20+ |short|16|Short
21+ |int|32|Integer
22+
23+ Support empty columns inside tables:
24+ Primitive Type||Size(bit)|Class
25+ -|-|-|-
26+ byte||8|Byte
27+ char||16|Character
Original file line number Diff line number Diff line change 22 "name" : " markdown-table-prettify" ,
33 "displayName" : " Markdown Table Prettifier" ,
44 "description" : " Transforms markdown tables to be more readable." ,
5- "version" : " 0 .0.1 " ,
5+ "version" : " 1 .0.0 " ,
66 "publisher" : " darkriszty" ,
7+ "repository" : {
8+ "type" : " git" ,
9+ "url" : " https://github.com/darkriszty/MarkdownTablePrettify-VSCodeExt"
10+ },
11+ "bugs" : {
12+ "url" : " https://github.com/darkriszty/MarkdownTablePrettify-VSCodeExt/issues"
13+ },
714 "engines" : {
815 "vscode" : " ^1.5.0"
916 },
3138 "typemoq" : " ^1.4.1" ,
3239 "typescript" : " ^2.0.3" ,
3340 "vscode" : " ^1.0.0"
34- }
41+ },
42+ "license" : " MIT"
3543}
You can’t perform that action at this time.
0 commit comments