Package org.drinkless.tdlib
Class TdApi.ParseMarkdown
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Function
-
- org.drinkless.tdlib.TdApi.ParseMarkdown
-
- Enclosing class:
- TdApi
public static class TdApi.ParseMarkdown extends TdApi.Function
Parses Markdown entities in a human-friendly format, ignoring markup errors. Can be called synchronously.Returns
FormattedText
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.TdApi.FormattedTexttextThe text to parse.
-
Constructor Summary
Constructors Constructor Description ParseMarkdown()Default constructor for a function, which parses Markdown entities in a human-friendly format, ignoring markup errors.ParseMarkdown(TdApi.FormattedText text)Creates a function, which parses Markdown entities in a human-friendly format, ignoring markup errors.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
-
-
-
Field Detail
-
text
public TdApi.FormattedText text
The text to parse. For example, "__italic__ ~~strikethrough~~ **bold** `code` ```pre``` __[italic__ textUrl](telegram.org) _Italic**bold italic_Bold**".
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ParseMarkdown
public ParseMarkdown()
Default constructor for a function, which parses Markdown entities in a human-friendly format, ignoring markup errors. Can be called synchronously.Returns
FormattedText
-
ParseMarkdown
public ParseMarkdown(TdApi.FormattedText text)
Creates a function, which parses Markdown entities in a human-friendly format, ignoring markup errors. Can be called synchronously.Returns
FormattedText- Parameters:
text- The text to parse. For example, "__italic__ ~~strikethrough~~ **bold** `code` ```pre``` __[italic__ textUrl](telegram.org) _Italic**bold italic_Bold**".
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-