1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 14:27:00 +01:00
MadelineProto/docs/TD_docs/constructors/textParseModeHTML.md

44 lines
652 B
Markdown
Raw Normal View History

---
title: textParseModeHTML
description: Text should be parsed in the HTML-style way
---
## Constructor: textParseModeHTML
[Back to constructors index](index.md)
Text should be parsed in the HTML-style way
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
### Type: [TextParseMode](../types/TextParseMode.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$textParseModeHTML = ['_' => 'textParseModeHTML'];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "textParseModeHTML"}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
textParseModeHTML={_='textParseModeHTML'}
```