chatgpt-md-converter 0.3.2__tar.gz → 0.3.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chatgpt_md_converter
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: A package for converting markdown to HTML for chat Telegram bots
5
5
  Home-page: https://github.com/Latand/formatter-chatgpt-telegram
6
6
  Author: Kostiantyn Kriuchkov
@@ -128,7 +128,7 @@ Feel free to contribute to this project by submitting pull requests or opening i
128
128
  > **Note**:
129
129
  > 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:
130
130
 
131
- ````md
131
+ ```
132
132
  When formatting your responses for Telegram, please use these special formatting conventions:
133
133
 
134
134
  1. For content that should be hidden as a spoiler (revealed only when users click):
@@ -136,7 +136,7 @@ When formatting your responses for Telegram, please use these special formatting
136
136
  Example: This is visible, but ||this is hidden until clicked||.
137
137
 
138
138
  2. For lengthy explanations or optional content that should be collapsed:
139
- Use: \*\*> Expandable section title
139
+ Use: **> Expandable section title
140
140
 
141
141
  > Content line 1
142
142
  > Content line 2
@@ -165,6 +165,6 @@ Use expandable blockquotes for:
165
165
  - Optional reading
166
166
  - Technical details
167
167
  - Additional context not needed by all users
168
- ````
168
+ ```
169
169
 
170
170
  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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chatgpt_md_converter
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: A package for converting markdown to HTML for chat Telegram bots
5
5
  Home-page: https://github.com/Latand/formatter-chatgpt-telegram
6
6
  Author: Kostiantyn Kriuchkov
@@ -128,7 +128,7 @@ Feel free to contribute to this project by submitting pull requests or opening i
128
128
  > **Note**:
129
129
  > 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:
130
130
 
131
- ````md
131
+ ```
132
132
  When formatting your responses for Telegram, please use these special formatting conventions:
133
133
 
134
134
  1. For content that should be hidden as a spoiler (revealed only when users click):
@@ -136,7 +136,7 @@ When formatting your responses for Telegram, please use these special formatting
136
136
  Example: This is visible, but ||this is hidden until clicked||.
137
137
 
138
138
  2. For lengthy explanations or optional content that should be collapsed:
139
- Use: \*\*> Expandable section title
139
+ Use: **> Expandable section title
140
140
 
141
141
  > Content line 1
142
142
  > Content line 2
@@ -165,6 +165,6 @@ Use expandable blockquotes for:
165
165
  - Optional reading
166
166
  - Technical details
167
167
  - Additional context not needed by all users
168
- ````
168
+ ```
169
169
 
170
170
  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.
@@ -2,7 +2,7 @@ from setuptools import setup
2
2
 
3
3
  setup(
4
4
  name="chatgpt_md_converter",
5
- version="0.3.2",
5
+ version="0.3.3",
6
6
  author="Kostiantyn Kriuchkov",
7
7
  author_email="latand666@gmail.com",
8
8
  description="A package for converting markdown to HTML for chat Telegram bots",