No description
Find a file
2024-07-08 18:01:41 +09:00
docs update doc 2024-07-08 18:01:14 +09:00
src Change to force initialization of members of Style type 2024-07-08 17:57:20 +09:00
tests Change to force initialization of members of Style type 2024-07-08 17:57:20 +09:00
cloths.nimble bump version 2024-07-08 18:01:41 +09:00
LICENSE init 2024-06-20 13:18:06 +09:00
README.md update README 2024-06-21 21:48:31 +09:00

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
  • Nimble

Instalation

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