regularstuff / tildeblog

A learn-to-use Django team project
BSD 3-Clause "New" or "Revised" License
2 stars 3 forks source link

When adding tags, show a preview of what tag string will be split to (htmx) - duplicate of #11 closing #35

Closed readytheory closed 3 months ago

readytheory commented 3 months ago

Entrybox lets you type

foo, bar-alpha, baz clock,

There is some function that normalizes the string to ["foo", "bar_alpha", "baz_clock"]

As you type there should be a display field near the textbox that gives the user the preview of what the tags are being normalized to. This is a good fit for htmx.

readytheory commented 3 months ago

same as 11