Skip to content

Commit

Permalink
Fix line break formatting in workflow index chart
Browse files Browse the repository at this point in the history
Replaced `\n` with `<br/>` in the mermaid flowchart diagram to ensure proper line breaks in the rendered HTML.
  • Loading branch information
MarianPalkus committed Oct 29, 2024
1 parent 3c20e8e commit 1d86966
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hugo/content/docs/learn/workflow/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ flowchart TD
G(["7.&nbsp;Generate artifacts"]);
H(["Find advanced topics"]);
A --> B --> C --> D --> E --> F --> G ~~~ H;
G -- for each additional\ngrammar change --> C;
G -- for each additional<br/>grammar change --> C;

click A "/docs/learn/workflow/install"
click B "/docs/learn/workflow/scaffold"
Expand Down

0 comments on commit 1d86966

Please sign in to comment.