Skip to content

Commit 324e1a9

Browse files
committed
1.1.1
1 parent 92bb2fa commit 324e1a9

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdtable-cli"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
license = "MIT"
55
authors = ["Axel Lindeberg"]
66
description = "A tool that makes creating tables in markdown much easier!"

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# mdtable-cli
2-
Command line tool for generating markdown tables. It takes in CSV-formatted data and converts it into a markdown table.
2+
Command line tool for generating markdown tables from CSV-formatted data.
33

44
![Demo gif](./demo.gif)
55

66
See also the [Crates.io](https://crates.io/crates/mdtable-cli) page.
77

88
# Usage
9-
The application expects each row of the table as rows in the input, i.e rows separated by newlines. Each element of the row is seperated by a `,` (or another value see flag `-s`). This can either come from a file with a positional argument or from stdin. If from stdin you can signal the end of the table by either `EOF` or by an empty line (i.e hitting enter twice).
9+
The program expects each row of the table as rows in the input, i.e rows separated by newlines. Each element is separated by a `,` (or another value see flag `-s`). This can either come from a file or from stdin. If from stdin you can signal the end of the table by either `EOF` or by an empty line (i.e hitting enter twice).
1010

1111
Here are some example cli usages:
1212

@@ -17,12 +17,13 @@ mdtable table.csv > mdtable.md
1717
cat table.csv | mdtable > mdtable.md
1818
```
1919

20-
See `Options` for a full description program arguments.
20+
See `Options` for a full description of the program arguments.
2121

2222
For examples of input and corresponding output see [examples.md](./examples.md)
2323

2424
# Installation
25-
If you're a rust programmer (e.g you have `rustc` and `cargo`) simply do:
25+
If you're a rust programmer, e.g you have `cargo` installed, simply do:
26+
2627
```
2728
cargo install mdtable-cli
2829
```
@@ -31,6 +32,7 @@ If you don't want to download `rustc` and `cargo` you can download the binary di
3132

3233
## Building from source
3334
If you don't trust random binaries from github you can build it yourself from source:
35+
3436
```
3537
git clone git@github.com:AxlLind/mdtable-cli.git
3638
cd mdtable-cli

src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub struct Config {
1010
impl Config {
1111
pub fn from_args() -> Config {
1212
let args = App::new("mdtable")
13-
.version("1.1.0")
13+
.version("1.1.1")
1414
.author("Axel Lindeberg")
1515
.about("Makes creating tables in markdown much easier!")
1616
.arg(Arg::from_usage("[FILE] 'Reads table tables from this. [default: stdin]'"))

0 commit comments

Comments
 (0)