Hi, Markdown is not being rendered in metaflow-ui....
# ask-metaflow
h
Hi, Markdown is not being rendered in metaflow-ui. Am i missing anything?
Copy code
@card(type="blank", timeout=120)
    # @kubernetes(cpu=0.2, memory="500")
    @step
    def end(self):
        """
        The ending step of the flow.
        This step does not have a specific labelset applied.
        """
        # Cards with important information can be added here.
        card_md = Markdown(f"""
        # LabelSets Flow Execution Summary
        - **Input Data S3 URI**: [Open in S3]({self.base_data_s3_uri})
        - **Responses S3 URI**: [Open in S3]({self.output_base_data_res_s3_uri})
        - **RF and BTB Results S3 URI**: [Open in S3]({self.output_rf_btb_res_s3_uri})
        """)
        current.card.append(card_md)
        # Print non card version as well
        print(f"Input Data S3 URI: {self.base_data_s3_uri}")
        print(f"Responses S3 URI: {self.output_base_data_res_s3_uri}")
        print(f"RF and BTB Results S3 URI: {self.output_rf_btb_res_s3_uri}")
        print("Flow has ended.")
metaflow - 2.18.3 images: • public.ecr.aws/outerbounds/metaflow_ui:v1.3.3 • public.ecr.aws/outerbounds/metaflow_metadata_service:2.5.0