From: Luis Felipe <sirgazil@zoho.com>
To: Guile User <guile-user@gnu.org>
Subject: SXML and optional attributes
Date: Sun, 22 Dec 2024 21:23:32 +0000 [thread overview]
Message-ID: <781ad99b-d8f9-44b8-9122-c32b340a3d63@zoho.com> (raw)
[-- Attachment #1.1.1: Type: text/plain, Size: 1126 bytes --]
Hi,
I'd like to add attributes to SXML elements conditionally, but I don't
see how.
I'm looking for a hypothetical "if*" that allows me to do the following:
(define* (special-input #:key name (required? #true))
"Return an SXHTML INPUT element for typing text."
`(input
(@ (type "text")
(name ,name)
,(if* required? '(required "")))))
The built-in "if" doesn't work here because it will return
#<unspecified> when the condition is false, which is not an acceptable
attribute. I'm not aware of any value that can be returned in an "else"
expression that would mean "nothing" to SXML; the empty list is not it:
,(if required? '(required "") '())
I'm hoping to find something better than the following workaround:
(define* (special-input #:key name (required? #true))
"Return an SXHTML INPUT element for typing text."
(if required?
`(input (@ (type "text") (name ,name) (required "")))
`(input (@ (type "text") (name ,name)))))
Any ideas?
--
Luis Felipe López Acevedo
https://luis-felipe.gitlab.io/
[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 2881 bytes --]
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]
next reply other threads:[~2024-12-22 21:23 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-22 21:23 Luis Felipe [this message]
2024-12-22 21:38 ` SXML and optional attributes Maxime Devos via General Guile related discussions
2024-12-23 0:01 ` Luis Felipe
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/guile/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=781ad99b-d8f9-44b8-9122-c32b340a3d63@zoho.com \
--to=sirgazil@zoho.com \
--cc=guile-user@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).