Remove misplaced backquotes in faq.rst#39661
Remove misplaced backquotes in faq.rst#39661kaxil merged 1 commit intoapache:mainfrom le-chartreux:patch-1
Conversation
In the section 'What’s the deal with start_date?' of the FAQ, two back quotes are in the middle of an inline code (line 224): ``start_date=``datetime(2024, 1, 1)``. This leads to a bad rendering where the two back quotes appears between the = and datetime(2024, 1, 1), like this: start_date=``datetime(2024, 1, 1)
|
Congratulations on your first Pull Request and welcome to the Apache Airflow community! If you have any issues or are unsure about any anything please check our Contributors' Guide (https://github.com/apache/airflow/blob/main/contributing-docs/README.rst)
|
|
Nice! Feel free to create a PR without an Issue in the future if you want to fix something |
|
Hi @Taragolis, |
|
Hi, is it normal that the CI failed on "Lint Docker compose files with JSON Schema" even if I didn't modified any Docker compose file? |
Yeah, that is kind of different issue which is not relevant to your changes, should be temporary fixed by #39662 |
|
Awesome work, congrats on your first merged pull request! You are invited to check our Issue Tracker for additional contributions. |
|
Congrats on your first PR @le-chartreux 👏 |
|
Thank you @kaxil! |
In the section 'What’s the deal with start_date?' of the FAQ, two back quotes are in the middle of an inline code (line 224): ``start_date=``datetime(2024, 1, 1)``. This leads to a bad rendering where the two back quotes appears between the = and datetime(2024, 1, 1), like this: start_date=``datetime(2024, 1, 1) (cherry picked from commit 435ba14)
In the section 'What’s the deal with start_date?' of the FAQ, two back quotes are in the middle of an inline code (line 224): ``start_date=``datetime(2024, 1, 1)``. This leads to a bad rendering where the two back quotes appears between the = and datetime(2024, 1, 1), like this: start_date=``datetime(2024, 1, 1) (cherry picked from commit 435ba14)
In the section 'What’s the deal with start_date?' of the FAQ, two back quotes are in the middle of an inline code (line 224): ``start_date=``datetime(2024, 1, 1)``. This leads to a bad rendering where the two back quotes appears between the = and datetime(2024, 1, 1), like this: start_date=``datetime(2024, 1, 1)
closes: #39660
In the section 'What’s the deal with start_date?' of the FAQ, two back quotes (``) are in the middle of an inline code (line 224 of
faq.rst):``start_date=``datetime(2024, 1, 1)``This leads to a bad rendering where the two back quotes appears between
=anddatetime(2024, 1, 1), like this:start_date=``datetime(2024, 1, 1)(or picture just bellow).I removed the two back quotes in the middle of the inline code, so now it renders without them.