Go to file
Talia 16ac15b7c3
Add explicit empty value to skooma
Optional arguments in skooma can be very annoying at times:

	html.span("foo: ", may_return_undefined())

Skooma will produce a warning to inform the user that one of their
arguments is undefined as is is often unintended.
The new `empty` value provides a mechanism to explicitly ignore a single
argument, should it be optional

	html.span("foo: ", may_return_undefined() || empty)
2023-09-29 15:09:30 +02:00
skooma.js Add explicit empty value to skooma 2023-09-29 15:09:30 +02:00
skooma.md Extend skooma.text function to support template strings 2023-09-29 15:09:09 +02:00