MadelineProtoDocs/old_docs/API_docs_v18/constructors/pageBlockBlockquote.md

40 lines
832 B
Markdown

---
title: pageBlockBlockquote
description: Quote (equivalent to the HTML `<blockquote>`)
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: pageBlockBlockquote
[Back to constructors index](index.md)
Quote (equivalent to the HTML `<blockquote>`)
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|text|[RichText](../types/RichText.md) | Yes|Quote contents|
|caption|[RichText](../types/RichText.md) | Yes|Caption|
### Type: [PageBlock](../types/PageBlock.md)
### Example:
```php
$pageBlockBlockquote = ['_' => 'pageBlockBlockquote', 'text' => RichText, 'caption' => RichText];
```
Or, if you're into Lua:
```lua
pageBlockBlockquote={_='pageBlockBlockquote', text=RichText, caption=RichText}
```