Hello,
I’d like to use GIFs in conjunction with instructions on an information page inside my app. Is there a way to pull the GIF inside the markdown?
Below is the code to that page without GIFs.
text = """
Model Comparison App that shows comparisons in Accuracy and BIAS from different points of view.\n\n
Initial training runs from January of 2017 through December of 2021 and is walked forward each month to October 2022. The 'Base Model' consists of just the stats-forecast driven by sales history. Each additional model consists of the base model predictions plus any additional effects (i.e. promotions).\n\n
## MODEL COMPARISON
The model comparison page displays the Accuracy/BIAS from an overall point of view in addition to a business line, offset, month, and individual item comparison.\n\n
## HIERARCHY WALK
The hierarchy walk page allows a user to discover what business line, category, sub-category and item is driving the MAPE or BIAS. Each level of the hierarchy can be filtered by the the level above.\n\n
## INDIVIDUAL ITEM
The individual item page will display how a model performed through time at both the shop and home delivery location type. Sale variation by MAPE, TNA & promotion through time as well as BIAS distributions are also displayed.\n\n
## META DATA
The Meta Data Page communicates miscellaneous information about the data
"""
layout = ddk.App(
ddk.Row([
ddk.Card(
width=100,
children=[
ddk.CardHeader(title='Information Page'),
dcc.Markdown(text)
]
)
])
)