telegram-md2html 1.0.3 → 1.0.4

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.
Files changed (2) hide show
  1. package/README.md +0 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -145,10 +145,6 @@ const html = converter.convert('**[Important Link](https://example.com)**');
145
145
  | `[text](url)` | `<a href="url">text</a>` | Hyperlink |
146
146
  | `> text` | `<blockquote>text</blockquote>` | Blockquote |
147
147
  | `**> text**` | `<blockquote expandable>text</blockquote>` | Expandable blockquote |
148
- | `- text` | `<ul><li>text</li></ul>` | Unordered list |
149
- | `1. text` | `<ol><li>text</li></ol>` | Ordered list |
150
- | `---` | `<hr>` | Horizontal rule |
151
- | `![alt](url)` | `<img src="url" alt="alt">` | Image |
152
148
 
153
149
  ## API Reference
154
150
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "telegram-md2html",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "A smart converter for Telegram-style Markdown to Telegram-compatible HTML",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",