- From: Bruce B. Anderson <notifications@github.com>
- Date: Wed, 03 May 2023 05:17:09 -0700
- To: WICG/webcomponents <webcomponents@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 3 May 2023 12:17:15 UTC
Not to detract from the exciting proposal @EisenbergEffect has laid out that seems to address all concerns, but also seems to require significant changes to rendering by the browser, I suppose addressing @justinfagnani criticisms of my suggestion of the template element as not being semantically meaningful, I would suggest, as an alternative to processing instructions, we could use the already existing self-closing [meta tag](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta), which seems to already be used for search engines quite extensively, and already supports the itemprop attribute (and like processing instructions doesn't render anything). Unfortunately, unlike the template element, the table element spits it out: ```html <table> <tr> <meta name="hello"> <td>hello</td> </tr> </table> ``` gets rendered as: ```html <meta name="hello"> <table> <tr> <td>hello</td> </tr> </table> ``` But if we are talking bold actions, maybe this could be changed, to behave more like the template element? -- Reply to this email directly or view it on GitHub: https://github.com/WICG/webcomponents/issues/1003#issuecomment-1532923816 You are receiving this because you are subscribed to this thread. Message ID: <WICG/webcomponents/issues/1003/1532923816@github.com>
Received on Wednesday, 3 May 2023 12:17:15 UTC