From 3e5fa5557193a6b577aa53662cafe652a41142d1 Mon Sep 17 00:00:00 2001 From: RootShinobi <111008396+RootShinobi@users.noreply.github.com> Date: Sun, 31 Dec 2023 16:44:39 +0200 Subject: [PATCH] support blockquote --- aiogram_i18n/__meta__.py | 2 +- aiogram_i18n/utils/text_decorator.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/aiogram_i18n/__meta__.py b/aiogram_i18n/__meta__.py index 7b1e312..f9e47b6 100644 --- a/aiogram_i18n/__meta__.py +++ b/aiogram_i18n/__meta__.py @@ -1 +1 @@ -__version__ = "1.3.3" +__version__ = "1.3.4" diff --git a/aiogram_i18n/utils/text_decorator.py b/aiogram_i18n/utils/text_decorator.py index 1a7ee0c..cb0c614 100644 --- a/aiogram_i18n/utils/text_decorator.py +++ b/aiogram_i18n/utils/text_decorator.py @@ -40,6 +40,9 @@ def spoiler(self, value: str) -> str: def quote(self, value: str) -> str: return value + def blockquote(self, value: str) -> str: + return value + def custom_emoji(self, value: str, custom_emoji_id: str) -> str: return value