le-chartreux opened a new issue, #39660: URL: https://github.com/apache/airflow/issues/39660
### What do you see as an issue? Hi Airflow team! In the [section 'What’s the deal with start_date?' of the FAQ](https://airflow.apache.org/docs/apache-airflow/stable/faq.html#what-s-the-deal-with-start-date), 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: ```rst ``start_date=``datetime(2024, 1, 1)`` ``` After: ```rst ``start_date=datetime(2024, 1, 1)`` ``` ### Anything else _No response_ ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md) -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
