🌐
GitHub
github.com › mgeisler › textwrap
GitHub - mgeisler/textwrap: An efficient and powerful Rust library for word wrapping text. · GitHub
An efficient and powerful Rust library for word wrapping text. - mgeisler/textwrap
Starred by 520 users
Forked by 52 users
Languages   Rust
🌐
GitHub
github.com › python › cpython › blob › main › Lib › textwrap.py
cpython/Lib/textwrap.py at main · python/cpython
class TextWrapper: """ Object for wrapping/filling text. The public interface consists of · the wrap() and fill() methods; the other methods are just there for · subclasses to override in order to tweak the default behaviour.
Author   python
🌐
GitHub
github.com › topics › textwrap
textwrap · GitHub Topics · GitHub
Textwrap for javascript/nodejs. Correctly handles wide characters (宽字符) and emojis (😃). Automatically breaks long words.
🌐
GitHub
github.com › superbobry › ocaml-textwrap
GitHub - superbobry/ocaml-textwrap: Text wrapping and filling for OCaml
Text wrapping and filling for OCaml. Contribute to superbobry/ocaml-textwrap development by creating an account on GitHub.
Starred by 11 users
Forked by 3 users
Languages   OCaml 99.2% | Makefile 0.8% | OCaml 99.2% | Makefile 0.8%
🌐
GitHub
github.com › topics › text-wrap
text-wrap · GitHub Topics
Text wrapping/filling library. Port of python textwrap
🌐
GitHub
github.com › jonathaneunice › textwrap3
GitHub - jonathaneunice/textwrap3: Python 3 textwrap backport for 2.6 forward
Python 3 textwrap backport for 2.6 forward. Contribute to jonathaneunice/textwrap3 development by creating an account on GitHub.
Author   jonathaneunice
🌐
Go Packages
pkg.go.dev › github.com › zbysir › textwrap
textwrap package - github.com/zbysir/textwrap - Go Packages
github.com/zbysir/textwrap · Open Source Insights · Better text wrap algorithms · Wrap text without breaking words as much as possible · Support Chinese characters and super long words · Does not follow the "Unicode line breaking algorithm" Expand ▾ Collapse ▴ ·
🌐
GitHub
github.com › xavierjefferson › Snork.TextWrap
GitHub - xavierjefferson/Snork.TextWrap: Text wrapping/filling library. Port of python textwrap
Reformat the single paragraph in 'text' so it fits in lines of no more than 'width' columns, and return a list of wrapped lines. By default, tabs in 'text' are expanded, and all other whitespace characters (including newline) are converted to space. See TextWrapperOptions class below for available properties to customize wrapping behavior.
Author   xavierjefferson
🌐
GitHub
github.com › mgeisler › textwrap › releases
Releases · mgeisler/textwrap
October 24, 2022 - An efficient and powerful Rust library for word wrapping text. - Releases · mgeisler/textwrap
Author   mgeisler
🌐
GitHub
github.com › carlobaldassi › TextWrap.jl
GitHub - carlobaldassi/TextWrap.jl: Julia package for wrapping text into paragraphs.
Julia package for wrapping text into paragraphs. Contribute to carlobaldassi/TextWrap.jl development by creating an account on GitHub.
Starred by 18 users
Forked by 8 users
Languages   Julia 100.0% | Julia 100.0%
Find elsewhere
🌐
GitHub
github.com › jonathaneunice › ansiwrap
GitHub - jonathaneunice/ansiwrap: textwrap, but savvy to ANSI colors · GitHub
textwrap, but savvy to ANSI colors. Contribute to jonathaneunice/ansiwrap development by creating an account on GitHub.
Starred by 22 users
Forked by 15 users
Languages   Python
🌐
GitHub
github.com › zbysir › textwrap
GitHub - zbysir/textwrap: Better text wrap algorithms · GitHub
Better text wrap algorithms. Contribute to zbysir/textwrap development by creating an account on GitHub.
Author   zbysir
🌐
GitHub
github.com › python › cpython › blob › 3.14 › Lib › textwrap.py
cpython/Lib/textwrap.py at 3.14 · python/cpython
class TextWrapper: """ Object for wrapping/filling text. The public interface consists of · the wrap() and fill() methods; the other methods are just there for · subclasses to override in order to tweak the default behaviour.
Author   python
🌐
GitHub
github.com › asap-projects › asap-textwrap
GitHub - asap-projects/asap-textwrap: Text wrapper and column formatter for C++.
Text wrapper and column formatter for C++. Contribute to asap-projects/asap-textwrap development by creating an account on GitHub.
Starred by 28 users
Forked by 3 users
Languages   CMake 47.6% | C++ 43.2% | HTML 3.2% | Shell 2.8% | JavaScript 1.9% | Dockerfile 1.3% | CMake 47.6% | C++ 43.2% | HTML 3.2% | Shell 2.8% | JavaScript 1.9% | Dockerfile 1.3%
🌐
GitHub
github.com › mgeisler › textwrap › blob › master › CHANGELOG.md
textwrap/CHANGELOG.md at master · mgeisler/textwrap
February 27, 2022 - An efficient and powerful Rust library for word wrapping text. - textwrap/CHANGELOG.md at master · mgeisler/textwrap
Author   mgeisler
🌐
GitHub
github.com › isbm › textwrap
GitHub - isbm/textwrap: Port of Python's "textwrap" module to Go
Port of Python's "textwrap" module to Go. Contribute to isbm/textwrap development by creating an account on GitHub.
Starred by 6 users
Forked by 5 users
Languages   Go 100.0% | Go 100.0%
🌐
GitHub
github.com › mirismaili › text-wrapper
GitHub - mirismaili/text-wrapper: A library for wrapping (breaking) long lines of large texts into limited-length lines, based on given options · GitHub
A library for wrapping (breaking) long lines of large texts into limited-length lines, based on given options - mirismaili/text-wrapper
Author   mirismaili
🌐
GitHub
github.com › topics › text-wrap
Build software better, together
Text wrapping/filling library. Port of python textwrap
🌐
GitHub
github.com › tusharsadhwani › textwrapper
GitHub - tusharsadhwani/textwrapper: Automatic text wrap for python docstrings
May 21, 2021 - Automatic text wrap for python docstrings. Contribute to tusharsadhwani/textwrapper development by creating an account on GitHub.
Author   tusharsadhwani
🌐
GitHub
github.com › ekalinin › go-textwrap
GitHub - ekalinin/go-textwrap: Library with some convenience functions to work with text
// ➜ cat main.go package main import ( "fmt" "github.com/ekalinin/go-textwrap" ) func main() { txt := ` select * from products where price > 100; ` fmt.Println(">> Just text:") fmt.Println(txt) fmt.Println(">> Width Dedent:") fmt.Println(textwrap.Dedent(txt)) } The result: ➜ go run main.go >> Just text: select * from products where price > 100; >> Width Dedent: select * from products where price > 100; Documentation: https://pkg.go.dev/github.com/ekalinin/go-textwrap#Indent ·
Author   ekalinin