--- title: pageBlockBlockquote description: Quote (equivalent to the HTML `
`) image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: pageBlockBlockquote [Back to constructors index](index.md) Quote (equivalent to the HTML `
`) ### 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} ```