repositorypackage
0.0.0-20241114202856-b05aa30a7cf2
Repository: https://github.com/abanoubha/cleantext.git
Documentation: pkg.go.dev
# README
cleanText
A simple program to clean up text. The goal of the program is to accept text from standard input then doing the clean process then output the result onto the standard output.
Basic usage:
$ echo "àbanôūb" | cleanText
abanoub
Commands
# build
go mod tidy && go build -o cleantext .
# run the program
./cleantext -h
# detect race conditions & memory leaks
go run -race .
Resources & references
Converted symbols
See source code for now. I will document them later.
Kept symbols
symbols that are kept after cleaning
symbol | meaning |
---|---|
± | Plus-minus Sign |
° | degree sign |
Skipped symbols
See source code for now. I will document them later.
Further development
Let me know if you have any suggestion and/or problems by writing an issue. If you have an addition or feature or a fix, make a pull request.