https://github.com/timbray/tomssb
https://github.com/timbray/tomssb
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/timbray/tomssb
- Owner: timbray
- License: bsd-2-clause
- Created: 2021-09-28T22:09:48.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-12-14T18:18:49.000Z (over 4 years ago)
- Last Synced: 2025-01-28T17:45:09.067Z (over 1 year ago)
- Language: Go
- Size: 2.93 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# toMSSB
Processes text, converting alphabetic ASCII letters
and digits (**a** through **z**,
**A** through **Z**, and **0** through **9**) into their
equivalents in Unicode's MATHEMATICAL SANS-SERIF BOLD
range, starting at 0x1D5D4 and 0x1D5EE for capital and
lower-case letters, and 0x1D7EC for numeric digits.
All other characters are left as-is.
Output is in UTF-8.
If there are command-line arguments, they are converted and
written to Standard Output. Failing that, lines are read from
standard input, converted, and written to standard output.
To build:
```shell
go build -o bin/tomssb
```