From b45200d0926c078bcbd4dad06172aa0d8c05e8c4 Mon Sep 17 00:00:00 2001 From: Thomas Jung Date: Fri, 5 Jun 2026 08:26:44 -0400 Subject: [PATCH] fix: outdent indented numbered-list items (#193) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sibling numbered-list items 4. and 2. were indented further than their preceding siblings. CommonMark interprets that as a fresh nested
    , which renders as a layout glitch on the new tutorial platform (sap-tutorials/tutorials-ims#168). Files changed (2 tutorials): - btp-sdm-gwi-onbrepo-jwt-token: outdent 4. (L57) from column 6 to column 4 to match siblings 1-3 (this is a nested list — child of the outer item 2., not flush-left) - luigi-app-react: outdent 2. (L356) from 2-space indent to flush-left to match sibling 1. Per-edit verification: each numbered marker is now flush with its matching sibling. CommonMark continuation content (code blocks, images) within each item retains its existing indent. Detected by: tutorials-ims/scripts/lint-tutorial-markdown.ts. Tracking: sap-tutorials/tutorials-ims#193. --- .../btp-sdm-gwi-onbrepo-jwt-token.md | 2 +- tutorials/luigi-app-react/luigi-app-react.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/btp-sdm-gwi-onbrepo-jwt-token/btp-sdm-gwi-onbrepo-jwt-token.md b/tutorials/btp-sdm-gwi-onbrepo-jwt-token/btp-sdm-gwi-onbrepo-jwt-token.md index 4b7cfcc..c01108c 100644 --- a/tutorials/btp-sdm-gwi-onbrepo-jwt-token/btp-sdm-gwi-onbrepo-jwt-token.md +++ b/tutorials/btp-sdm-gwi-onbrepo-jwt-token/btp-sdm-gwi-onbrepo-jwt-token.md @@ -54,7 +54,7 @@ Navigate to the service that you created in the previous tutorial [Create a Serv !![Select Post](Select Post Method.png) - 4. For encoding, you need to select all the values in the **authorities** field, right click and select the option **EncodeURIComponent**. + 4. For encoding, you need to select all the values in the **authorities** field, right click and select the option **EncodeURIComponent**. !![Encoding_Authorities](Encoding_Authorities.png) diff --git a/tutorials/luigi-app-react/luigi-app-react.md b/tutorials/luigi-app-react/luigi-app-react.md index bb5e716..3771624 100644 --- a/tutorials/luigi-app-react/luigi-app-react.md +++ b/tutorials/luigi-app-react/luigi-app-react.md @@ -353,7 +353,7 @@ In this step, you will make changes to the entry point `index.js` for the React root.render(); ``` - 2. Next, go to the `react-core-mf/src/views` directory created in step 6 of the [previous tutorial](luigi-app-basic-setup). Find the file called `home.js` and paste the following code into it: +2. Next, go to the `react-core-mf/src/views` directory created in step 6 of the [previous tutorial](luigi-app-basic-setup). Find the file called `home.js` and paste the following code into it: ```JavaScript import React, { useState, useEffect } from 'react';