MadelineProtoDocs/docs/API_docs/constructors/pageBlockParagraph.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

45 lines
787 B
Markdown

---
title: pageBlockParagraph
description: A text paragraph
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: pageBlockParagraph
[Back to constructors index](index.md)
A text paragraph
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|text|[RichText](../types/RichText.md) | Yes|Paragraph text|
### Type: [PageBlock](../types/PageBlock.md)
### Example:
```php
$pageBlockParagraph = ['_' => 'pageBlockParagraph', 'text' => RichText];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "pageBlockParagraph", "text": RichText}
```
Or, if you're into Lua:
```lua
pageBlockParagraph={_='pageBlockParagraph', text=RichText}
```