import gradio as gr import modelscope_studio as mgr with gr.Blocks() as demo: mgr.Markdown( """ custom tag: """, custom_components={ # Key is the tag name "custom-tag": { # The tag props. "props": ["value"], # The tag template, use `{prop}` as placeholder。 "template": "
{value}
" } }) if __name__ == "__main__": demo.queue().launch()