MadelineProtoDocs/old_docs/API_docs_v25/constructors/pageBlockBlockquote.md
2020-06-16 17:50:25 +02:00

832 B

title description image
pageBlockBlockquote Quote (equivalent to the HTML `<blockquote>`) https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: pageBlockBlockquote

Back to constructors index

Quote (equivalent to the HTML <blockquote>)

Attributes:

Name Type Required Description
text RichText Yes Quote contents
caption RichText Yes Caption

Type: PageBlock

Example:

$pageBlockBlockquote = ['_' => 'pageBlockBlockquote', 'text' => RichText, 'caption' => RichText];

Or, if you're into Lua:

pageBlockBlockquote={_='pageBlockBlockquote', text=RichText, caption=RichText}