Clean up tools godoc

This commit is contained in:
Thomas Pelletier
2021-12-31 15:56:40 -05:00
parent 4807229e94
commit 4a73a200ed
3 changed files with 45 additions and 9 deletions
+16 -4
View File
@@ -1,8 +1,20 @@
// Jsontoml reads JSON and converts to TOML. // Package jsontoml is a program that converts JSON to TOML.
// //
// Usage: // Usage
// cat file.toml | jsontoml > file.json //
// jsontoml file1.toml > file.json // Reading from stdin:
//
// cat file.json | jsontoml > file.toml
//
// Reading from a file:
//
// jsontoml file.json > file.toml
//
// Installation
//
// Using Go:
//
// go install github.com/pelletier/go-toml/v2/cmd/jsontoml@latest
package main package main
import ( import (
+13 -1
View File
@@ -1,8 +1,20 @@
// Package tomljson is a program that converts TOML to JSON. // Package tomljson is a program that converts TOML to JSON.
// //
// Usage: // Usage
//
// Reading from stdin:
//
// cat file.toml | tomljson > file.json // cat file.toml | tomljson > file.json
//
// Reading from a file:
//
// tomljson file.toml > file.json // tomljson file.toml > file.json
//
// Installation
//
// Using Go:
//
// go install github.com/pelletier/go-toml/v2/cmd/tomljson@latest
package main package main
import ( import (
+16 -4
View File
@@ -1,8 +1,20 @@
// Tomll is a linter for TOML // Package tomll is a linter program for TOML.
// //
// Usage: // Usage
// cat file.toml | tomll > file_linted.toml //
// tomll file1.toml file2.toml # lint the two files in place // Reading from stdin, writing to stdout:
//
// cat file.toml | tomll
//
// Reading and updating a list of files in place:
//
// tomll a.toml b.toml c.toml
//
// Installation
//
// Using Go:
//
// go install github.com/pelletier/go-toml/v2/cmd/tomll@latest
package main package main
import ( import (