Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| en:visualizer_help_wiki_rules [2025/11/18 15:51] – removed adminwiki | en:visualizer_help_wiki_rules [2025/11/18 16:00] (current) – [Control contents] adminwiki | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ===== Documentation for help in the Visualiser ===== | ||
| + | {{INLINETOC 3}} | ||
| + | |||
| + | The help texts in the help panel of the vrdoro Visualiser are managed in the wiki. You can use labelling when writing the wiki content to determine which content is displayed. The following options are available: | ||
| + | |||
| + | ==== Activate content ==== | ||
| + | |||
| + | If a section from a help page in the software is to be displayed in the help panel, then the section must be marked by a WRAP element with the class '' | ||
| + | |||
| + | Example ([[https:// | ||
| + | <code html> | ||
| + | <WRAP vrdoro-help # | ||
| + | ==== Überschrift ==== | ||
| + | Textinhalt. | ||
| + | </ | ||
| + | </ | ||
| + | |||
| + | This content is marked in the wiki with a line on the left-hand side. This makes it immediately recognisable that this text is also displayed in the vrdoro-visualizer. | ||
| + | |||
| + | ==== Using the content in the visualiser ==== | ||
| + | |||
| + | To display this content in the software, the function this.helpPanelNeoCode.getWikiContent is used in the template code to fill a translation map. | ||
| + | |||
| + | Example ([[https:// | ||
| + | <code javascript> | ||
| + | this.translations = { | ||
| + | de: { | ||
| + | step1: { | ||
| + | description: | ||
| + | docFunction: | ||
| + | }, | ||
| + | }, | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | '' | ||
| + | |||
| + | ==== Control contents ==== | ||
| + | |||
| + | About '' | ||
| + | |||
| + | These classes mean | ||
| + | - only-headset: | ||
| + | - not-in-headset: | ||
| + | |||
| + | Example '' | ||
| + | <code html> | ||
| + | <div only-headset> | ||
| + | Dieser Text ist nur im Headset sichtbar! | ||
| + | </ | ||
| + | </ | ||
| + | |||
| + | Example '' | ||
| + | <code html> | ||
| + | <div not-in-headset> | ||
| + | Dieser Text ist **nicht** im Headset sichtbar! | ||
| + | </ | ||
| + | </ | ||
| + | |||
| + | ==== 2-column layout ==== | ||
| + | A two-column layout is ideal for displaying images. This is achieved in Markdown using this code (indentations are removed): | ||
| + | |||
| + | <code html> | ||
| + | < | ||
| + | <div two-col-grid> | ||
| + | < | ||
| + | < | ||
| + | </ | ||
| + | </ | ||
| + | </ | ||
| + | |||
| + | ==== Insert images ==== | ||
| + | |||
| + | An image is inserted like this: | ||
| + | < | ||
| + | {{pasted: | ||
| + | </ | ||
| + | |||
| + | Note: The image size must be specified (recommendation: | ||
| + | |||
| + | ==== Insert icons ==== | ||
| + | |||
| + | Icons in the text can be used in the heading or in the normal text. | ||
| + | |||
| + | === Icons in the heading === | ||
| + | |||
| + | The app icons are listed in this directory: https:// | ||
| + | |||
| + | In the wiki, they can be accessed via this URL prefix: https:// | ||
| + | - '' | ||
| + | - '' | ||
| + | - '' | ||
| + | |||
| + | For a heading, a DIV with the class '' | ||
| + | |||
| + | Example ([[https:// | ||
| + | <code html> | ||
| + | <WRAP vrdoro-help # | ||
| + | <div title> | ||
| + | {{https:// | ||
| + | ===== Überschrift ===== | ||
| + | </ | ||
| + | </ | ||
| + | |||
| + | === Icons in continuous text === | ||
| + | |||
| + | If icons are to be displayed in the body text, only the icon needs to be specified. | ||
| + | |||
| + | Example: | ||
| + | < | ||
| + | {{https:// | ||
| + | </ | ||
| + | |||
| + | Here the additional parameter '' | ||
