Skip to content

Commit 188dd53

Browse files
committed
Preparation for release.
1 parent adbfe9a commit 188dd53

6 files changed

Lines changed: 48 additions & 7 deletions

File tree

.vscodeignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ src/**
77
.gitignore
88
tsconfig.json
99
vsc-extension-quickstart.md
10+
.travis.yml
11+
demonstration.md

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
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.

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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.

assets/animation.gif

-42.4 KB
Loading

demonstration.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

package.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,15 @@
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
},
@@ -31,5 +38,6 @@
3138
"typemoq": "^1.4.1",
3239
"typescript": "^2.0.3",
3340
"vscode": "^1.0.0"
34-
}
41+
},
42+
"license": "MIT"
3543
}

0 commit comments

Comments
 (0)