Registered User (Merge articles) |
Registered User (Merge articles) |
||
Line 50: | Line 50: | ||
| style="max-width:30em;" | | | style="max-width:30em;" | | ||
{{GDB$}} this is a so long command executed on GDB that a horizontal scrolling bar is needed | {{GDB$}} this is a so long command executed on GDB that a horizontal scrolling bar is needed | ||
|- | |||
| Template used within another public message box template | |||
<pre style="white-space: pre-wrap;"> | |||
{{Info | | |||
Message before the command | |||
{{GDB$}} show listsize | |||
Number of source lines gdb will list by default is 10. | |||
Message after the command | |||
}} | |||
</pre> | |||
| | |||
{{Info | | |||
Message before the command | |||
{{GDB$}} show listsize | |||
Number of source lines gdb will list by default is 10. | |||
Message after the command | |||
}} | |||
|- | |||
| Template used within another protected message box template | |||
<pre style="white-space: pre-wrap;"> | |||
{{InternalInfo | | |||
Message before the command | |||
{{GDB$}} show listsize | |||
Number of source lines gdb will list by default is 10. | |||
Message after the command | |||
}} | |||
</pre> | |||
| | |||
{{InternalInfo | | |||
Message before the command | |||
{{GDB$}} show listsize | |||
Number of source lines gdb will list by default is 10. | |||
Message after the command | |||
}} | |||
|} | |} | ||
Line 58: | Line 92: | ||
==Code== | ==Code== | ||
</noinclude><span class="gdb-prompt"></span> | </noinclude><span class{{=}}"gdb-prompt"></span> |
Revision as of 19:05, 19 May 2022
1. Usage[edit source]
The GDB$ template is used to prefix a command that must be executed on GDB, with a GDB-specific prompt.
Thanks to the gdb-prompt
class defined in MediaWiki:Common.css, a double (or triple) click to select the command doesn't select the prompt.
GDB$}}Usage: {{
2. Basic examples[edit source]
You type | You get |
---|---|
info break command executed on GDB
GDB$}} show listsize<br> Number of source lines gdb will list by default is 10.{{ |
show listsize |
3. More examples[edit source]
You type | You get |
---|---|
2 commands executed on GDB and preformatted text block (space at the beginning of each line)
GDB$}} show listsize Number of source lines gdb will list by default is 10. {{GDB$}} continue{{ |
show listsize
Number of source lines gdb will list by default is 10.
continue
|
Command executed on GDB and preformatted text block (space at the beginning of each line)
GDB$}} show listsize Number of source lines gdb will list by default is 10.{{ |
show listsize
Number of source lines gdb will list by default is 10.
|
Long command executed on GDB and preformatted text block (space at the beginning of each line)
GDB$}} this is a so long command executed on GDB that a horizontal scrolling bar is needed{{ |
GDB that a horizontal scrolling bar is neededthis is a so long command executed on |
Template used within another public message box template
GDB$}} show listsize Number of source lines gdb will list by default is 10. Message after the command }}{{Info | Message before the command {{ |
|
Template used within another protected message box template
GDB$}} show listsize Number of source lines gdb will list by default is 10. Message after the command }}{{InternalInfo | Message before the command {{ |
4. Maintenance[edit source]
This template is a template common to all ST wikis.
Modifications must be done into the WikiModel. They must be reviewed by all ST wikis maintainers.
When approved, the template can be pushed/merged towards all ST wikis.
5. Code[edit source]