- From: Nathan Knowler <notifications@github.com>
- Date: Fri, 03 May 2024 08:13:12 -0700
- To: WICG/webcomponents <webcomponents@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
- Message-ID: <WICG/webcomponents/issues/1056@github.com>
## Problem Given this DSD markup, the default content of the slot will never show up because the there is whitespace before and after the `<template>` element: ```html <my-element> <template shadowrootmode=open> <slot>Fallback</slot> </template> </my-element> ``` In order to get around this one needs to write their markup without any whitespace: ```html <my-element><template shadowrootmode=open> <slot>Fallback</slot> </template></my-element> ``` While this is an easy fix, it’s not always apparent and in some cases the formatting makes the markup harder to read. ## An idea for a solution An attribute for the `<slot>` element to indicate that surrounding whitespace should be ignored might be one solution for this: ```html <my-element> <template shadowrootmode=open> <slot trimwhitespace>Fallback</slot> </template> </my-element> ``` (Not a great name, I know.) This could generally improve the developer experience of writing Web Components, though it still does require knowledge that whitespace is slotted. I acknowledge that this issue becomes less of a problem once we get declarative custom elements, since authors don’t need to write templates for every instance of those elements. -- Reply to this email directly or view it on GitHub: https://github.com/WICG/webcomponents/issues/1056 You are receiving this because you are subscribed to this thread. Message ID: <WICG/webcomponents/issues/1056@github.com>
Received on Friday, 3 May 2024 15:13:16 UTC