You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(tutorials): fix nav footers, restore image captions, add breadcrumb
Address a batch of rendering and consistency issues found reviewing the
GitHub Pages site.
Navigation footers:
- Correct Next/Previous labels that named the wrong step across the
walkthrough (34, 35 and 9 more: 15, 16, 18, 19, 23, 24, 30, 32, 36);
link targets were right, only the display text was wrong.
- OData V4: add the missing Next on step 9 and Previous on step 10,
drop the bogus Next on the last step (11) that looped back to step 1.
- Normalize footer shape across tutorials: collapse the doubled `***`
rule in the navigation steps, and reorder OData V4 so Next/Previous
comes before Related Information (matching the other four tutorials).
- Document the canonical footer order in AGENTS.md.
Image captions (restore Demo Kit behavior):
- Auto-render a caption from each image's alt text in assets/js/custom.js
(styled in assets/css/custom.css). Alt text was never removed; only
the visible caption was lost in the migration.
- Remove the ~42 redundant hand-authored <sup> captions, folding their
wording fixes back into the alt/title first so nothing is lost.
Broken OData V4 images:
- Fix multiline alt-text syntax in steps 2 and 4 (an image whose alt
spans two lines does not render).
- Add the image files that were referenced but never committed:
steps 9 and 11 from the SDK screenshots, steps 5 and 10 reuse the
previous step's screenshot ("no visual change").
Quickstart overview:
- Replace the borrowed step-3 screenshot (which carried a copy-pasted
Walkthrough alt text) with the correct SDK image, fix the alt text,
and remove a stray trailing period.
Tutorial breadcrumb:
- Inject a "UI5 Tutorials > <Tutorial>" breadcrumb on every step page
(tools/builder/prepare-gh-pages.js for GitHub Pages, tools/dev-server
for local preview) so readers know which tutorial they are in and can
return to its overview.
Copy file name to clipboardExpand all lines: AGENTS.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ Full author docs are in [CONTRIBUTING.md](CONTRIBUTING.md).
76
76
Other conventions:
77
77
78
78
- Callouts use `> :note:`, `> :tip:`, `> :info:` (custom syntax, not GitHub's `[!NOTE]` alerts).
79
-
- Step navigation footer: `***` separator, then `**Next:** [Step N+1: <title>](../<NN+1>/README.md)` and `**Previous:** [Step N-1: <title>](../<NN-1>/README.md)`.
79
+
- Step navigation footer: a single `***` separator, then `**Next:** [Step N+1: <title>](../<NN+1>/README.md)` and `**Previous:** [Step N-1: <title>](../<NN-1>/README.md)`. When a step also has a **Related Information** section, the order is Next/Previous first, then another `***`, then `**Related Information**` (matches all five tutorials). The first step has no `**Previous:**`; the last step has no `**Next:**`. The link display text must match the target step's actual title.
80
80
- Preview images: descriptive `alt` text (no bare ``), optional `"title"` for the hover tooltip.
81
81
- Do not add `<!-- loio… -->` markers or `<a name="loio…"/>` anchors — those are SAP-internal SDK artifacts.
Copy file name to clipboardExpand all lines: packages/navigation/steps/01/README.md
-3Lines changed: 0 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,9 +89,6 @@ With the downloaded coding, you have an initial app with recommended settings th
89
89
90
90
So far we have a basic app that does not really have any navigation or routing implemented. This will change in the next steps when we implement our first navigation features.
0 commit comments