'Where can be seen the Task Documentation in the web
According to the Airflow md docs, you can add documentation to each task in a dag. I've tried to add that, but I cannot see where the docs are being showed up in the dag (in the Airflow web).
dag = DAG(
"my_dag",
start_date=pendulum.datetime(2021, 1, 1, tz="UTC"),
schedule_interval="@daily",
catchup=False,
)
t = BashOperator("foo", dag=dag)
t.doc_md = """\
#Title"
Here's a [url](www.airbnb.com)
"""
Where can I see it?
Solution 1:[1]
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Oluwafemi Sule |

