@@ -58,9 +58,9 @@ def card(
5858 Parameters
5959 ----------
6060 *args
61- Unnamed arguments can be any valid child of an [htmltools tag][htmltools::tags]
62- (which includes card items such as :func:`~shiny.experimental.ui.card_body`.
63- Named arguments become HTML attributes on the returned Tag.
61+ Unnamed arguments can be any valid child of an :class:`~htmltools.Tag` (which
62+ includes card items such as :func:`~shiny.experimental.ui.card_body`. Named
63+ arguments become HTML attributes on the returned Tag.
6464 full_screen
6565 If `True`, an icon will appear when hovering over the card body. Clicking the
6666 icon expands the card to fit viewport size.
@@ -157,16 +157,17 @@ def _full_screen_toggle_icon() -> HTML:
157157
158158class CardItem :
159159 """
160- A wrapper around a `Tag` object that represents a card item (e.g.,
161- :func:`~shiny.experimental.ui.card_body`, :func:`~shiny.experimental.ui.card_header`, etc.).
160+ A wrapper around a :class:`~htmltools.Tag` object that represents a card item (e.g.,
161+ :func:`~shiny.experimental.ui.card_body`,
162+ :func:`~shiny.experimental.ui.card_header`, etc.).
162163
163164 This class is used to allow for consecutive non-card items to be bundled into a
164165 single `card_body` within :func:`~shiny.experimental.ui.card`.
165166
166167 Parameters
167168 ----------
168169 item
169- A ` Tag` object that represents a card item (e.g.,
170+ A :class:`~htmltools. Tag` object that represents a card item (e.g.,
170171 :func:`~shiny.experimental.ui.card_body`, :func:`~shiny.experimental.ui.card_header`, etc.).
171172
172173 See Also
@@ -233,7 +234,7 @@ def card_body(
233234 ----------
234235 *args
235236 Contents to the card's body. Or tag attributes that are supplied to the
236- resolved ` Tag` object.
237+ resolved :class:`~htmltools. Tag` object.
237238 fillable
238239 Whether or not the card item should be a fillable (i.e. flexbox) container.
239240 min_height,max_height,max_height_full_screen
@@ -417,9 +418,10 @@ def __call__(
417418 ----------
418419 *args
419420 Contents to the tag method. Or tag attributes that are supplied to the
420- resolved ` Tag` object.
421+ resolved :class:`~htmltools. Tag` object.
421422 _add_ws
422- Whether or not to add whitespace to the returned `Tag` object.
423+ Whether or not to add whitespace to the returned :class:`~htmltools.Tag`
424+ object.
423425 **kwargs
424426 Additional HTML attributes for the returned Tag.
425427
@@ -447,9 +449,9 @@ def card_title(
447449 ----------
448450 *args
449451 Contents to the card's title. Or tag attributes that are supplied to the
450- resolved ` Tag` object.
452+ resolved :class:`~htmltools. Tag` object.
451453 container
452- Method for the returned Tag object. Defaults to :func:`~ shiny.ui.h5`.
454+ Method for the returned Tag object. Defaults to :func:`shiny.ui.tags .h5`.
453455 **kwargs
454456 Additional HTML attributes for the returned Tag.
455457
@@ -487,9 +489,9 @@ def card_header(
487489 ----------
488490 *args
489491 Contents to the header container. Or tag attributes that are supplied to the
490- resolved ` Tag` object.
492+ resolved :class:`~htmltools. Tag` object.
491493 container
492- Method for the returned Tag object. Defaults to :func:`~shiny.ui.div`.
494+ Method for the returned Tag object. Defaults to :func:`~shiny.ui.tags. div`.
493495 **kwargs
494496 Additional HTML attributes for the returned Tag.
495497
@@ -528,7 +530,7 @@ def card_footer(
528530 ----------
529531 *args
530532 Contents to the footer container. Or tag attributes that are supplied to the
531- resolved ` Tag` object.
533+ resolved :class:`~htmltools. Tag` object.
532534 **kwargs
533535 Additional HTML attributes for the returned Tag.
534536
@@ -567,7 +569,8 @@ def __call__(self, *args: Tag) -> Tagifiable:
567569 Returns
568570 -------
569571 :
570- A tagifiable object, such as a :class:`~htmltools.Tag` or :class:`~shiny.experimental.ui.CardItem` object.
572+ A tagifiable object, such as a :class:`~htmltools.Tag` or
573+ :class:`~shiny.experimental.ui.CardItem` object.
571574 """
572575 ...
573576
@@ -602,7 +605,8 @@ def card_image(
602605 `**kwargs:TagAttrValue` (e.g. `{"src": "HOSTED_PATH_TO_IMAGE"}` or
603606 `src="HOSTED_PATH_TO_IMAGE"`).
604607 *args
605- Dictionary of tag attributes that are supplied to the resolved `Tag` object.
608+ Dictionary of tag attributes that are supplied to the resolved
609+ :class:`~htmltools.Tag` object.
606610 href
607611 An optional URL to link to.
608612 border_radius
0 commit comments