Releases: EdJoPaTo/telegram-format
Releases · EdJoPaTo/telegram-format
v3.1.0
v3.0.1
v3.0.0
This release mainly provides a native TypeScript module for Deno! Check out https://deno.land/x/telegram_format.
BREAKING CHANGE: This release requires ES modules (no more CommonJS) and Node.js 14 or higher.
v2.1.0
v2.0.2
v2.0.1
v2.0.0
Add support for MarkdownV2 (8642303), strikethrough and underline (23cef46) and nested formatting (756ba07)
BREAKING CHANGE: html functions do not escape on their own anymore.
Use format.bold(format.escape(input)
instead of format.bold(input)
whenever you need.
This way you can nest functions like format.bold(format.italic(input))
without escaping the format of the inner one making it useless.