YiiTing edited a comment on issue #13761:
URL: https://github.com/apache/airflow/issues/13761#issuecomment-797170563
Here is test code and i could not display in the “Graph View” and “Task
Details” pages
```
with DAG(
dag_id='test',
schedule_interval='0 0 * * *',
start_date=datetime(2021, 3, 10),
default_args=default_args,
catchup=False
) as dag:
"""
### My great DAG
"""
dag.doc_md = __doc__
ssh = SSHOperator(
task_id='test',
ssh_conn_id='ssh_default',
command='date',
get_pty=True
)
ssh.doc_md = """\
#Title"
Here's a [url](www.airbnb.com)
"""
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]