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
It would be better if this were translated to a data structure like c("a", "b", "c", "d", "e", "f") or "a b c d e f" when the tag is created.
Edit: I've realized that class isn't special; it makes sense to do this with all HTML attributes. We'll have to be careful about types, though (attributes can be atomic vectors, but they can also be lists or tag objects).
We should also make tagAppendAttribute and friends do the same thing.
The text was updated successfully, but these errors were encountered:
Tag classes are way too freeform and this makes it difficult to work with them. For example:
It would be better if this were translated to a data structure like
c("a", "b", "c", "d", "e", "f")
or"a b c d e f"
when the tag is created.Edit: I've realized that
class
isn't special; it makes sense to do this with all HTML attributes. We'll have to be careful about types, though (attributes can be atomic vectors, but they can also be lists or tag objects).We should also make
tagAppendAttribute
and friends do the same thing.The text was updated successfully, but these errors were encountered: