From cb0d9dc6d965f202e56108425e824d11e1c3b3b6 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Fri, 16 Oct 2020 11:58:01 -0400 Subject: [PATCH] Synchronize lib section in basics tutorial with readme --- tutorials/basics/README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tutorials/basics/README.md b/tutorials/basics/README.md index d4ad86a..fd80305 100644 --- a/tutorials/basics/README.md +++ b/tutorials/basics/README.md @@ -222,15 +222,13 @@ For some Bubble Tea programs in production, see: ### Libraries we use with Bubble Tea -* [Bubbles][bubbles] various Bubble Tea components +* [Bubbles][bubbles]: various Bubble Tea components * [Termenv][termenv]: Advanced ANSI styling for terminal applications -* [Reflow][reflow]: ANSI-aware methods for reflowing blocks of text -* [go-runewidth][runewidth]: Measure the physical width of strings in terms of terminal cells. Many runes, such as East Asian charcters and emojis, are two cells wide, so measuring a layout with `len()` often won't cut it. +* [Reflow][reflow]: ANSI-aware methods for formatting blocks of text and measuring widths of strings. Many runes, such as East Asian charcters and emojis, are two cells wide, so measuring a layout with `len()` often won't cut it. Reflow is particularly nice for this as it measures character widths while ignoring any ANSI sequences present. [termenv]: https://github.com/muesli/termenv [reflow]: https://github.com/muesli/reflow [bubbles]: https://github.com/charmbracelet/bubbles -[runewidth]: https://github.com/mattn/go-runewidth ### Feedback