# XWUIBlockquote

Renders quoted text from an external source, with an optional citation caption (Chakra Blockquote equivalent). By default it emits a semantic `<blockquote>` element; set `semantic: false` to use a plain `<div>`, and pass `cite` to attach a source URL. The `content` data accepts a string (rendered as HTML) or an `HTMLElement`, and `caption` adds an attribution `<footer>`.

## Basic Usage

A quote with an attribution caption rendered in the `<footer>`.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: A quote with an attribution caption rendered in the footer.
```

## Cited Source With Rich Content

`content` accepts inline HTML and `cite` attaches the source URL.

```example
file: examples/CitedSource.ts
html: examples/CitedSource.html
title: Cited Source With Rich Content
description: content accepts inline HTML and cite attaches the source URL.
```

## Non-Semantic Variant

`semantic: false` renders a plain `<div>` instead of a `<blockquote>`.

```example
file: examples/PlainDiv.ts
html: examples/PlainDiv.html
title: Non-Semantic Variant
description: semantic false renders a plain div instead of a blockquote.
```

```api
```
