From 07562102661e676882d90bfca1dfee37db1dbfb3 Mon Sep 17 00:00:00 2001 From: Kieran Ryan Date: Sat, 28 Mar 2026 09:32:28 +0000 Subject: [PATCH] feat: markdown attachment type --- allure-python-commons/src/allure_commons/types.py | 1 + 1 file changed, 1 insertion(+) diff --git a/allure-python-commons/src/allure_commons/types.py b/allure-python-commons/src/allure_commons/types.py index 43b8d5ed..9efa6c2a 100644 --- a/allure-python-commons/src/allure_commons/types.py +++ b/allure-python-commons/src/allure_commons/types.py @@ -46,6 +46,7 @@ def __init__(self, mime_type, extension): URI_LIST = ("text/uri-list", "uri") HTML = ("text/html", "html") + MARKDOWN = ("text/markdown", "md") XML = ("application/xml", "xml") JSON = ("application/json", "json") YAML = ("application/yaml", "yaml")