39 lines
624 B
Markdown
39 lines
624 B
Markdown
---
|
|
title: textSubscript
|
|
description: Text subscript
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: textSubscript
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
Text subscript
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|text|[RichText](../types/RichText.md) | Yes|Text|
|
|
|
|
|
|
|
|
### Type: [RichText](../types/RichText.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```php
|
|
$textSubscript = ['_' => 'textSubscript', 'text' => RichText];
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
```lua
|
|
textSubscript={_='textSubscript', text=RichText}
|
|
|
|
```
|
|
|
|
|