What do you see as an issue?
Hi Airflow team!
In the section 'What’s the deal with start_date?' of the FAQ, two back quotes (``) are in the middle of an inline code.
I think they souldn't be there, because it's not a valid Python code.
This leads to a rendering where the two back quotes appears between = and datetime(2024, 1, 1), like this: start_date=``datetime(2024, 1, 1) (or see the picture just bellow).

Best regards and thank you for your work, this is awesome!
Solving the problem
Removing the two back quotes in the middle of the inline code (line 224 of faq.rst) will make it renders without them.
Before:
``start_date=``datetime(2024, 1, 1)``
After:
``start_date=datetime(2024, 1, 1)``
Anything else
No response
Are you willing to submit PR?
Code of Conduct
What do you see as an issue?
Hi Airflow team!
In the section 'What’s the deal with start_date?' of the FAQ, two back quotes (``) are in the middle of an inline code.
I think they souldn't be there, because it's not a valid Python code.
This leads to a rendering where the two back quotes appears between
=anddatetime(2024, 1, 1), like this:start_date=``datetime(2024, 1, 1)(or see the picture just bellow).Best regards and thank you for your work, this is awesome!
Solving the problem
Removing the two back quotes in the middle of the inline code (line 224 of
faq.rst) will make it renders without them.Before:
``start_date=``datetime(2024, 1, 1)``After:
``start_date=datetime(2024, 1, 1)``Anything else
No response
Are you willing to submit PR?
Code of Conduct