Renders Markdown text from query data as HTML, with Axion template tokens resolved after conversion.
MARKDOWN — set as ReportType in def_report.
def Render(self, Param1="", Param2="", Param3="") -> str:
Params are unused. Iterates over self.data_list; each row's first element is treated as a Markdown string. Converts each string to HTML using the markdown library, then passes the result through process_text to resolve any Axion $token$ references. Returns the concatenated HTML.
Depends on the markdown Python package. Token resolution (process_text) occurs after Markdown rendering, so tokens embedded in Markdown source are substituted in the final HTML output.