Ghimlink (Github Image Linker)

A simple command-line application for generating a Github-Flavoured-Markdown image link for a file in your repository.

Simple Usage

For example, if we want to link to gimli.png and link.jpg in this repository's res/ directory, we could do so as follows:

```bash ghimlink ./res/gimli.png Enter alt text: Gimli Gimli

ghimlink ./res/link.jpg Enter alt text: Link Link ```

Giving us:

Gimli Link

Ghimlink will handle retreiving your Github remote data automatically (as long as you have a valid origin remote on Github).

Advanced Usage

``` ghimlink 0.1.0 Paul Cowie paul.cowie@ntlworld.com Generates a Github-Flavoured-Markdown formatted image link to an image in the same repository.

USAGE: ghimlink [OPTIONS]

FLAGS: -h, --help Prints help information -V, --version Prints version information

OPTIONS: -a, --alt_text Sets the alt-text for the image -b, --branch Sets the file's branch name (defaults to master)

ARGS: Path to the image file ```

Installing

With Cargo:

bash cargo install ghimlink

TODO