From 39a48fa66cdee92820d9f6bb8984a4bd0b2825ff Mon Sep 17 00:00:00 2001 From: Geoff Doty Date: Sun, 5 May 2024 21:22:15 -0400 Subject: [PATCH] rename um --- README.md | 14 ++++++++------ dist/tagged.min.js.map | 1 - dist/{tagged.min.js => um.min.js} | 2 +- dist/um.min.js.map | 1 + makefile | 4 ++-- 5 files changed, 12 insertions(+), 10 deletions(-) delete mode 100644 dist/tagged.min.js.map rename dist/{tagged.min.js => um.min.js} (92%) create mode 100644 dist/um.min.js.map diff --git a/README.md b/README.md index 5992939..7f0abaf 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,10 @@ -# Tagged +# Um > Minimal JavaScript UI Builder -An experimental composable UI builder that takes ideas from early [hyperapp](https://github.com/jorgebucaran/hyperapp) design, but does not stick to strict Elm Architecture. +Um, is an experimental composable UI builder that takes ideas from early [hyperapp](https://github.com/jorgebucaran/hyperapp) design, but does not stick to strict Elm Architecture. + +Um, because you should think about NOT using it. ## Features - No Virtual Dom @@ -13,9 +15,9 @@ An experimental composable UI builder that takes ideas from early [hyperapp](htt ## Overview -The library only has 2 functions, `app()` and `h()`, and the later is optional. +The library only has 2 functions, `app()` and `h()`, and the later is optional. -### app({opts}) +### app({opts}) The `app()` is the builder function and takes an `opts` object: @@ -43,7 +45,7 @@ The `h()` is an **optional** hypertext build utility that weighs in around **~25 ```html