|
| 1 | +# 🔗 Links in texts |
| 2 | + |
| 3 | +- Two underscores (**__**) represents the selected language, which the system automatically adds from the user settings. |
| 4 | +- Refer to documents in relative ways (using ..). |
| 5 | +- Use **forward - /** for slashes in travel. |
| 6 | +- For more complex links (going to another help), use **?** and enter only parameters to make the system transfer easier in the future |
| 7 | + |
| 8 | +See below for common ways to define a link. |
| 9 | + |
| 10 | +## Inside Help |
| 11 | + |
| 12 | +### Other topic/page |
| 13 | +``` |
| 14 | +The file defines a link between [keywords][Dkeywords.lst] and a list of [files][Dfiles.lst] |
| 15 | +// ... at the end of the file: |
| 16 | +[Dfiles.lst]: mdata/files.lst.md "files.lst" |
| 17 | +[Dkeywords.lst]: mdata/keywords.lst.md "keywords.lst" |
| 18 | +``` |
| 19 | +The file defines a link between [keywords][Dkeywords.lst] and a list of [files][Dfiles.lst] |
| 20 | + |
| 21 | +### Another topic and its subchapter |
| 22 | +``` |
| 23 | +Chapter [How the application works][working] discusses the basics of working with the application. |
| 24 | +// ... at the end of the file: |
| 25 | +[working]: README.md#how-it-works "How the application works" |
| 26 | +``` |
| 27 | +*Here, the link created will automatically change with the language translation of the chapters.* |
| 28 | + |
| 29 | +Chapter [How the application works][working] discusses the basics of working with the application. |
| 30 | + |
| 31 | +## Outside the help file - URI path |
| 32 | +``` |
| 33 | +This solution also uses the [JSZip library][JSZIP]. |
| 34 | +// ... at the end of the file: |
| 35 | +[JSZIP]: http://jszip.org/ "JSZip - support for ZIP files handling" |
| 36 | +``` |
| 37 | +This solution also uses the [JSZip library][JSZIP]. |
| 38 | + |
| 39 | +## Another help file |
| 40 | + |
| 41 | +### Default page |
| 42 | +``` |
| 43 | +You will see [user documentation][userdoc] directly in the HelpViewer, just like you see this website now. |
| 44 | +// ... at the end of the file: |
| 45 | +[userdoc]: ?d=hlp-user/Help-__.zip "Help Viewer quick guide" |
| 46 | +``` |
| 47 | + |
| 48 | +You will see [user documentation][userdoc] directly in the HelpViewer, just like you see this website now. |
| 49 | + |
| 50 | +### Specific topic |
| 51 | +``` |
| 52 | +If the problem persists, go to [troubleshooting guide][trouble]. |
| 53 | +// ... at the end of the file: |
| 54 | +[trouble]: ?d=hlp/Help-__.zip&p=trouble.md "Troubleshooting guide" |
| 55 | +``` |
| 56 | + |
| 57 | +If the problem persists, go to [troubleshooting guide][trouble]. |
| 58 | + |
| 59 | +### URI from the network |
| 60 | +``` |
| 61 | +You will see [user documentation][userdoc2] directly in the HelpViewer, just like you see this website now. |
| 62 | +// ... at the end of the file: |
| 63 | +[userdoc2]: ?d=https://github.com/HelpViewer/helpUser/releases/download/20250615/Help-__.zip "Help Viewer quick guide" |
| 64 | +``` |
| 65 | + |
| 66 | +You will see [user documentation][userdoc2] directly in the HelpViewer, just like you see this website now. |
| 67 | + |
| 68 | +[Dfiles.lst]: mdata/files.lst.md "files.lst" |
| 69 | +[Dkeywords.lst]: mdata/keywords.lst.md "keywords.lst" |
| 70 | +[working]: README.md#how-it-works "How the application works" |
| 71 | +[JSZIP]: http://jszip.org/ "JSZip - support for ZIP files handling" |
| 72 | +[userdoc]: ?d=hlp-user/Help-__.zip "Help Viewer quick guide" |
| 73 | +[trouble]: ?d=hlp/Help-__.zip&p=trouble.md "Troubleshooting guide" |
| 74 | +[userdoc2]: ?d=https://github.com/HelpViewer/helpUser/releases/download/20250615/Help-__.zip "Help Viewer quick guide" |
0 commit comments