@@ -6,21 +6,6 @@ A minimalist data driven data model library, inspired by [Clojure Spec](https://
66[ ![ cljdoc badge] ( https://cljdoc.org/badge/minimallist/minimallist )] ( https://cljdoc.org/d/minimallist/minimallist/CURRENT )
77[ ![ project chat] ( https://img.shields.io/badge/slack-join_chat-brightgreen.svg )] ( https://clojurians.slack.com/archives/C012HUX1VPC )
88
9- ## Features
10-
11- - validates and generates data,
12- - fully data driven, models are hash-map based created via helpers,
13- - support recursive definitions and sequence regex,
14- - no macro, no static registry, pure functions,
15- - relatively simple implementation, easy to read and modify,
16- - cross platform (` .cljc ` ),
17- - ` valid? ` runs in [ Babashka] ( https://github.com/borkdude/babashka )
18-
19- ## Non-goals (for now)
20-
21- - does not integrate with anything else,
22- - does not try hard to be performant
23-
249## Usage
2510
2611``` clojure
@@ -43,7 +28,27 @@ A minimalist data driven data model library, inspired by [Clojure Spec](https://
4328; => true
4429```
4530
46- See the [ tests] ( test/ ) for more examples of how to use the helpers to build your models.
31+ ## Features
32+
33+ - validates and generates data,
34+ - fully data driven, models are hash-map based created via helpers,
35+ - support recursive definitions and sequence regex,
36+ - no macro, no static registry, pure functions,
37+ - relatively simple implementation, easy to read and modify,
38+ - cross platform (` .cljc ` ),
39+ - ` valid? ` runs in [ Babashka] ( https://github.com/borkdude/babashka )
40+
41+ ## Non-goals (for now)
42+
43+ - does not integrate with anything else,
44+ - does not try hard to be performant
45+
46+ ## Documentation
47+
48+ See the [ latest documentation on cljdoc] ( https://cljdoc.org/d/minimallist/minimallist/CURRENT ) for:
49+ - A general description of the Minimallist project.
50+ - How to use the helpers to build your models.
51+ - How to validate and generate your data.
4752
4853## Status
4954
0 commit comments