flute icon indicating copy to clipboard operation
flute copied to clipboard

A beautiful, easilly composable HTML5 generation library in Common Lisp

Results 8 flute issues
Sort by recently updated
recently updated
newest added

Hi, I am impressed by flute - thank you. I have a question: if I define an user-element and have no attributes for children, there is an error. Example: ```...

**element-string** needs to pass **:pretty t** to **write**, otherwise it work properly only if **\*print-pretty\*** is bound to T when it is called.

Hello, I tried Flute (which looks great and easy to use, thanks and well done) and I stumbled across a symbol conflict. I wanted to define an element which takes...

https://github.com/ailisp/flute/blob/3138f7f7c583602debc3bf252027aa4c8ab16ea4/src/flute.lisp#L133 Without ever having tried your library, which looks very good, I wonder if this macro could get (from the HTML5 spec) the keyword parameters most commonly required/optional for each...

enhancement
help wanted

For example, if I want to produce the following output: `` @ailisp How do I include the `defer` boolean? (HTML treats it as a boolean; if it exists it's true,...

All empty HTML tags are currently left open, which is causing issues with script tags in particular. If I link an external script in the head element then due to...

With Flute and Parenscript, something like this doesn't work: ```lisp (h (script (ps (dotimes (n 3) (alert "test"))))) ``` because the result looks like this: ```html (function () { for...