glow/README.md
Christian Muehlhaeuser 2a3ea0ed0b Rename style previews
2019-11-28 09:07:08 +01:00

56 lines
1.2 KiB
Markdown

# Gold
Render markdown on the CLI, with _pizzazz_!
## Usage
Use a markdown source as the argument:
Read from file:
```
./gold README.md
```
Read from stdin:
```
./gold -
```
Fetch README from GitHub:
```
./gold github.com/charmbracelet/gold
```
Fetch markdown from an HTTP source:
```
./gold https://host.tld/file.md
```
When `gold` is started without any markdown source, it will try to find a
`README.md` or `README` file in the current working directory.
You can supply a JSON stylesheet with the `-s` flag:
```
./gold -s mystyle.json
```
## Example Output
![Gold Dark Style](https://github.com/charmbracelet/gold/raw/master/cmd/gold/styles/dark.png)
Check out the [Gold Style Gallery](https://github.com/charmbracelet/gold/blob/master/cmd/gold/styles/README.md)!
## Colors
Currently `gold` uses the [Aurora ANSI colors](https://godoc.org/github.com/logrusorgru/aurora#Index).
## Development
Style definitions located in `styles/` can be embedded into the binary by
running [statik](https://github.com/rakyll/statik):
```
statik -f -src styles -include "*.json"
```
You can re-generate screenshots of all available styles by running `gallery.sh`.
This requires `termshot` and `pngcrush` installed on your system!