Hacker News new | ask | show | jobs
by flagrant_taco 1077 days ago
Astro renders JSX to html, what happened when you tried to render a table row without a wrapper table rag? And more importantly, what is a table row doing outside of a table?
1 comments

Astro removes the html tags and just renders text, so I can’t return a new table row for simple crud setup. Only when it’s a valid table does it not strip out the html.
Oh that's interesting, never seen that happen before but I must have just never run into that use case