Skip to content

Commit 4f205a4

Browse files
committed
EN : contextHelp : typography fix
1 parent eda33ec commit 4f205a4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

en/contextHelp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ The definition can be changed dynamically based on context (e.g., by page). More
3030

3131
## Retrieving the list of chapters
3232

33-
For help authors, chapter namesderived from the **id** attribute of controls in the applicationare key.
34-
**The programmer must provide them**they are responsible for configuring the plugin.
33+
For help authors, chapter names - derived from the **id** attribute of controls in the application - are key.
34+
**The programmer must provide them** - they are responsible for configuring the plugin.
3535

3636
### Steps for the programmer
3737

@@ -42,13 +42,13 @@ For help authors, chapter names—derived from the **id** attribute of controls
4242
allElements = Array.from(document.body.querySelectorAll('*')).map(x => x.id).filter(x => x);
4343
```
4444

45-
3. For combined IDs (e.g., trees, listsonly prefixes before **|** are combined):
45+
3. For combined IDs (e.g., trees, lists - only prefixes before **|** are combined):
4646

4747
```javascript
4848
allElements = [...new Set(Array.from(document.body.querySelectorAll('*')).map(x => x.id).filter(x => x).map(x => x.split('|')[0]))];
4949
```
5050

51-
4. **Verify behavior** in the target environmentthe **routing, extension, and offset** parameters affect the final chapter name.
51+
4. **Verify behavior** in the target environment - the **routing, extension, and offset** parameters affect the final chapter name.
5252

5353
## Special cases
5454

0 commit comments

Comments
 (0)