Skip to main content

A package for converting markdown to HTML for chat Telegram bots

Project description

ChatGPT Markdown to Telegram HTML Parser

Overview

This project provides a solution for converting Telegram-style Markdown formatted text into HTML markup supported by the Telegram Bot API, specifically tailored for use in ChatGPT bots developed with the OpenAI API. It includes features for handling various Markdown elements and ensures proper tag closure, making it suitable for streaming mode applications.

Features

  • Converts Telegram-style Markdown syntax to Telegram-compatible HTML
  • Supports text styling:
    • Bold: **text**<b>text</b>
    • Italic: *text* or _text_<i>text</i>
    • Underline: __text__<u>text</u>
    • Strikethrough: ~~text~~<s>text</s>
    • Spoiler: ||text||<span class="tg-spoiler">text</span>
    • Inline code: `code`<code>code</code>
  • Handles nested text styling
  • Converts links: [text](URL)<a href="URL">text</a>
  • Processes code blocks with language specification
  • Supports blockquotes:
    • Regular blockquotes: > text<blockquote>text</blockquote>
    • Expandable blockquotes: **> text<blockquote expandable>text</blockquote>
  • Automatically appends missing closing delimiters for code blocks
  • Escapes HTML special characters to prevent unwanted HTML rendering

Usage

To use the Markdown to Telegram HTML Parser in your ChatGPT bot, integrate the provided Python functions into your bot's processing pipeline. Here is a brief overview of how to incorporate the parser:

  1. Ensure Closing Delimiters: Automatically appends missing closing delimiters for backticks to ensure proper parsing.

  2. Extract and Convert Code Blocks: Extracts Markdown code blocks, converts them to HTML <pre><code> format, and replaces them with placeholders to prevent formatting within code blocks.

  3. Markdown to HTML Conversion: Applies various regex substitutions and custom logic to convert supported Markdown formatting to Telegram-compatible HTML tags.

  4. Reinsert Code Blocks: Reinserts the previously extracted and converted code blocks back into the main text, replacing placeholders with the appropriate HTML content.

Simply call the telegram_format(text: str) -> str function with your Markdown-formatted text as input to receive the converted HTML output ready for use with the Telegram Bot API.

Installation

pip install chatgpt-md-converter

Example

from chatgpt_md_converter import telegram_format

# Basic formatting example
text = """
Here is some **bold**, __underline__, and `inline code`.
This is a ||spoiler text|| and *italic*.

Code example:
print('Hello, world!')
"""

# Blockquotes example
blockquote_text = """
> Regular blockquote
> Multiple lines

**> Expandable blockquote
> Hidden by default
> Multiple lines
"""

formatted_text = telegram_format(text)
formatted_blockquote = telegram_format(blockquote_text)

print(formatted_text)
print(formatted_blockquote)

Output:

Here is some <b>bold</b>, <u>underline</u>, and <code>inline code</code>.
This is a <span class="tg-spoiler">spoiler text</span> and <i>italic</i>.

Code example:
print('Hello, world!')

<blockquote>Regular blockquote
Multiple lines</blockquote>

<blockquote expandable>Expandable blockquote
Hidden by default
Multiple lines</blockquote>

Performance

Benchmarks were recorded on Linux 6.16.6 (Python 3.11.10) using 1,000 iterations per sample.

Sample Direction Avg ms/call Ops/sec
short_inline Markdown→HTML 0.043 23,476
short_inline HTML→Markdown 0.078 12,824
medium_block Markdown→HTML 0.108 9,270
medium_block HTML→Markdown 0.155 6,437
long_mixed Markdown→HTML 0.446 2,242
long_mixed HTML→Markdown 0.730 1,370

These numbers provide a baseline; real-world throughput depends on text length and interpreter speed.

Reproduce the measurements with python scripts/benchmark.py --iterations 1000 --json benchmarks.json --summary BENCHMARKS.md.

Requirements

  • Python 3.x
  • No external libraries required (uses built-in re module for regex operations)

Contribution

Feel free to contribute to this project by submitting pull requests or opening issues for bugs, feature requests, or improvements.

Prompting LLMs for Telegram-Specific Formatting

Note: Since standard Markdown doesn't include Telegram-specific features like spoilers (||text||) and expandable blockquotes (**> text), you'll need to explicitly instruct LLMs to use these formats. Here's a suggested prompt addition to include in your system message or initial instructions:

When formatting your responses for Telegram, please use these special formatting conventions:

1. For content that should be hidden as a spoiler (revealed only when users click):
   Use: ||spoiler content here||
   Example: This is visible, but ||this is hidden until clicked||.

2. For lengthy explanations or optional content that should be collapsed:
   Use: **> Expandable section title

   > Content line 1
   > Content line 2
   > (Each line of the expandable blockquote should start with ">")

3. Continue using standard markdown for other formatting:
   - **bold text**
   - *italic text*
   - __underlined text__
   - ~~strikethrough~~
   - `inline code`
   - ```code blocks```
   - [link text](URL)

Apply spoilers for:

- Solution reveals
- Potential plot spoilers
- Sensitive information
- Surprising facts

Use expandable blockquotes for:

- Detailed explanations
- Long examples
- Optional reading
- Technical details
- Additional context not needed by all users

You can add this prompt to your system message when initializing your ChatGPT interactions to ensure the model properly formats content for optimal display in Telegram.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chatgpt_md_converter-0.4.0b3.tar.gz (37.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

chatgpt_md_converter-0.4.0b3-py3-none-any.whl (30.1 kB view details)

Uploaded Python 3

File details

Details for the file chatgpt_md_converter-0.4.0b3.tar.gz.

File metadata

  • Download URL: chatgpt_md_converter-0.4.0b3.tar.gz
  • Upload date:
  • Size: 37.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for chatgpt_md_converter-0.4.0b3.tar.gz
Algorithm Hash digest
SHA256 33f6b6689677cf5133d6bfb8d85bf56e965b02f5f6d6496ecb54d4f4a3f8d431
MD5 206ab4017d80d55dcd751b8806015e09
BLAKE2b-256 13d8e65cc171d544979138a269a0fb994cf7d795e21b515303b88ace19c818dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for chatgpt_md_converter-0.4.0b3.tar.gz:

Publisher: publish.yml on botfather-dev/formatter-chatgpt-telegram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chatgpt_md_converter-0.4.0b3-py3-none-any.whl.

File metadata

File hashes

Hashes for chatgpt_md_converter-0.4.0b3-py3-none-any.whl
Algorithm Hash digest
SHA256 5044f1883b0cd73e57591149e4813f9c4426aeda81d9c786a098fac597ba20b3
MD5 a997a4debc388eb1d5702cc0f8bedfb9
BLAKE2b-256 6b095025d4d613d1cd3ef939fba56fd51195f747a5271f698f8b5ef99458dced

See more details on using hashes here.

Provenance

The following attestation bundles were made for chatgpt_md_converter-0.4.0b3-py3-none-any.whl:

Publisher: publish.yml on botfather-dev/formatter-chatgpt-telegram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page