mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 15:09:42 +00:00
Added period to documentation templates sentences. Added logic to documentation.go to fix broken links for godoc in sub-packages. Fix coding style to conform to golang idiomatic practice. Applied fix to access main godocs in tools and test data. Generated new documents using tools.
28 lines
499 B
Cheetah
28 lines
499 B
Cheetah
{{define "tools" -}}
|
|
{{template "header" .}}
|
|
## Current Features
|
|
|
|
This folder contains an assortment of tools.
|
|
|
|
+ Configuration
|
|
+ Documentation creation
|
|
+ Portfolio monitoring
|
|
+ Exchange deployment
|
|
+ Websocket client
|
|
|
|
|
|
Example Run for documentation generation - flags -v Verbose & -r Replace files
|
|
```sh
|
|
cd documentation/
|
|
go run documentation.go -v
|
|
```
|
|
OR for full replacement.
|
|
|
|
```sh
|
|
cd documentation/
|
|
go run documentation.go -v -r
|
|
```
|
|
{{template "contributions"}}
|
|
{{template "donations"}}
|
|
{{end}}
|