cloths

Cloths provides the way to process and structure string easily.

Pure Nim score 15/100 · tests present · no docs generated

Summary

Latest Version 1.5.0
License MIT
CI Status Failing
Downloads 0
Last Indexed 2026-07-21 05:26

Tags

Authors

  • la .panon.

Installation

nimble install cloths
choosenim install cloths
git clone https://github.com/panno8M/cloths

OS Compatibility

Platform Linux macOS Windows FreeBSD OpenBSD NetBSD Android iOS WASM Embedded
cloths - - - - - - -

Dependencies

Package Version Optional
nim >= 2.0.0 No

Source

Repository https://github.com/panno8M/cloths
Homepage https://github.com/panno8M/cloths
Registry Source nimble_official

README

Cloths

Overview

import cloths
import cloths/styles/markdown
echo:
  weave multiline:
    "Cloths"
    "provides"
    weave text:
      "the"
      "way"
      "to"
    weave Tree():
      weave orderedList:
        "process"
        "and"
        "structure"
      weave multiline:
        "string"
        weave Tree() >> Underline(pattern: "~"):
          "easily."
#[ ==> output:
Cloths
provides
the way to
├─ 1. process
│  2. and
│  3. structure
└─ string
   └─ easily.
      ~~~~~~~
]#

User Manual

see documentation.

Dependencies

Required

  • Nim Compiler >= 2.0.0

Recommended

  • Nimble

Instalation

nimble install cloths
git clone https://github.com/panno8M/cloths.git
cd cloths
nimble install