RichContentReplacement

public struct RichContentReplacement : Sendable, Equatable

A replacement entry within rich content.

  • value: The display text for the replacement.
  • href: The URL for link-type replacements.
  • type: The type of replacement (e.g., “link”).
  • target: The link target (e.g., “_self”, “_blank”).
  • Declaration

    Swift

    public let value: String
  • Declaration

    Swift

    public let href: String?
  • Declaration

    Swift

    public let type: String
  • Declaration

    Swift

    public let target: String?