Per Docs meeting yesterday:
#1140 was the result of Hugo desupporting "shortcode alerts" where the alert tags and the alert text are on one line, for example:
{{% alert color="warning" %}}**Important**: Ensure that you perform the last step of the installation instructions.
{{% /alert %}}
These need to be rewritten to be on separate lines:
{{% alert color="warning" %}}
**Important**: Ensure that you perform the last step of the installation instructions.
{{% /alert %}}
While the quickstart is now fixed, we undoubtedly have other alerts elsewhere in the docs which aren't formatted correctly. As such, there are two parts to this help wanted issue:
- Locate all of the other misformatted alerts in versions 3.5, 3.6, and 3.7 of the docs. This could be done with regexes or AI tooling.
- Create a PR to fix all of those alerts.
Per Docs meeting yesterday:
#1140 was the result of Hugo desupporting "shortcode alerts" where the alert tags and the alert text are on one line, for example:
These need to be rewritten to be on separate lines:
While the quickstart is now fixed, we undoubtedly have other alerts elsewhere in the docs which aren't formatted correctly. As such, there are two parts to this help wanted issue: