Text Formatting =============== .. role:: strike :class: strike .. role:: underline :class: underline .. role:: bold-underline :class: bold-underline .. role:: strike-italic :class: strike-italic Pyrogram uses a custom Markdown dialect for text formatting which adds some unique features that make writing styled texts easier in both Markdown and HTML. You can send sophisticated text messages and media captions using a great variety of decorations that can also be nested in order to combine multiple styles together. .. contents:: Contents :backlinks: none :depth: 1 :local: ----- Basic Styles ------------ When formatting your messages, you can choose between Markdown-style, HTML-style or both (default). The following is a list of the basic styles currently supported by Pyrogram. - **bold** - *italic* - :strike:`strike` - :underline:`underline` - `text URL `_ - `user text mention `_ - ``inline fixed-width code`` - .. code-block:: text pre-formatted fixed-width code block .. note:: User text mentions are only guaranteed to work if you have already met the user (in groups or private chats). Markdown Style -------------- To strictly use this mode, pass "markdown" to the *parse_mode* parameter when using :meth:`~pyrogram.Client.send_message`. Use the following syntax in your message: .. code-block:: text **bold** __italic__ --underline-- ~~strike~~ [text URL](https://docs.pyrogram.org/) [text user mention](tg://user?id=23122162) `inline fixed-width code` ``` pre-formatted fixed-width code block ``` **Example**: .. code-block:: python app.send_message( "haskell", ( "**bold**, " "__italic__, " "--underline--, " "~~strike~~, " "[mention](tg://user?id=23122162), " "[URL](https://pyrogram.org), " "`code`, " "```" "for i in range(10):\n" " print(i)" "```" ), parse_mode="markdown" ) HTML Style ---------- To strictly use this mode, pass "html" to the *parse_mode* parameter when using :meth:`~pyrogram.Client.send_message`. The following tags are currently supported: .. code-block:: text bold, bold italic, italic underline strike, strike, strike text URL inline mention inline fixed-width code
    pre-formatted
      fixed-width
        code block
    
**Example**: .. code-block:: python app.send_message( "haskell", ( "bold, " "italic, " "underline, " "strike, " "mention, " "URL, " "code\n\n" "
"
            "for i in range(10):\n"
            "    print(i)"
            "
" ), parse_mode="html" ) .. note:: All ``<``, ``>`` and ``&`` symbols that are not a part of a tag or an HTML entity must be replaced with the corresponding HTML entities (``<`` with ``<``, ``>`` with ``>`` and ``&`` with ``&``). You can use this snippet to quickly escape those characters: .. code-block:: python import html text = "" text = html.escape(text) print(text) .. code-block:: text <my text> Different Styles ---------------- By default, when ignoring the *parse_mode* parameter, both Markdown and HTML styles are enabled together. This means you can combine together both syntaxes in the same text: .. code-block:: python app.send_message("haskell", "**bold**, italic") Result: **bold**, *italic* If you don't like this behaviour you can always choose to only enable either Markdown or HTML in strict mode by passing "markdown" or "html" as argument to the *parse_mode* parameter. .. code-block:: app.send_message("haskell", "**bold**, italic", parse_mode="markdown") app.send_message("haskell", "**bold**, italic", parse_mode="html") Result: **bold**, italic \*\*bold**, *italic* In case you want to completely turn off the style parser, simply pass ``None`` to *parse_mode*. The text will be sent as-is. .. code-block:: python app.send_message("haskell", "**bold**, italic", parse_mode=None) Result: \*\*bold**, italic Nested and Overlapping Entities ------------------------------- You can also style texts with more than one decoration at once by nesting entities together. For example, you can send a text message with both :bold-underline:`bold and underline` styles, or a text that has both :strike-italic:`italic and strike` styles, and you can still combine both Markdown and HTML together. Here there are some example texts you can try sending: **Markdown**: - ``**bold, --underline--**`` - ``**bold __italic --underline ~~strike~~--__**`` - ``**bold __and** italic__`` **HTML**: - ``bold, underline`` - ``bold italic underline strike`` - ``bold and italic`` **Combined**: - ``--you can combine HTML with **Markdown**--`` - ``**and also overlap** --entities this way--``