From 5239dc5e1e97642f6a42e07fea2853fb9f724c1b Mon Sep 17 00:00:00 2001 From: Urethramancer Date: Wed, 6 Mar 2024 11:35:16 +0100 Subject: [PATCH] Added human, corrected headers. --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b861c5e..f0b6f42 100644 --- a/README.md +++ b/README.md @@ -15,17 +15,20 @@ Currently supports: - Positional arguments - Catch-all positional arguments (last args become a slice) -## cfmt +### cfmt Colour formatting, printf style. -## env +### env At the moment, just the convenience function Get(), which returns the value of an environment variable or a supplied alternative. +### human +Humanised numbers (and possibly other things in the future). + ### paths Helper to get typical directory paths for configuration data. Basically makes dot-directories in $HOME (most systems) for config directories in $HOME/Library/Application Support (macOS). -## prompter +### prompter A simple tool to ask question in the terminal. Provide questions, and optionally default answers and whether the reply should be hidden. -## str +### str Currently just an extended strings.Builder which can write out all common variable types, maps and slices with the same function. Also satisfies the io.Writer interface.