from typing import Any, Dict def markdown(text: str) -> Dict[str, Any]: return { 'type': 'section', 'text': { 'type': 'mrkdwn', 'text': text } }