You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
It's unclear whether any browsers will ever implement such an optional spec, but maybe pushing for normalization to that brighter future in this area would be of benefit?
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:In order to get around this one needs to write their markup without any whitespace:
In some cases, some have opted to note this with a comment:
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:(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.
The text was updated successfully, but these errors were encountered: