Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tpkn/underline
Module for underline text
https://github.com/tpkn/underline
Last synced: about 2 months ago
JSON representation
Module for underline text
- Host: GitHub
- URL: https://github.com/tpkn/underline
- Owner: tpkn
- License: mit
- Created: 2021-10-14T09:46:40.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-14T09:47:17.000Z (about 3 years ago)
- Last Synced: 2024-06-20T05:13:13.277Z (7 months ago)
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Underline
Module for underline text## Usage
```go
underline.Custom("Lorem ipsum dolor sit amet", "+", true)// Lorem ipsum dolor sit amet
// ++++++++++++++++++++++++++
``````go
underline.Solid("Lorem ipsum dolor sit amet", true)// Lorem ipsum dolor sit amet
// ──────────────────────────
``````go
underline.Dashed("Lorem ipsum dolor sit amet", true)// Lorem ipsum dolor sit amet
// --------------------------
``````go
underline.Dotted("Lorem ipsum dolor sit amet", true)// Lorem ipsum dolor sit amet
// ..........................
```