Template:Boxcodelite: Difference between revisions

From PS3 Developer wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
<div style="float:{{{float|right}}}; font-size:85%; margin:5px; background:#eebb99; border:3px double #bb8866; box-shadow: 4px 4px 2px 1px #eeeeee;">
<div style="float:{{{float|right}}}; font-size:85%; margin:5px; background:#eebb99; border:3px double #bb8866; box-shadow: 4px 4px 2px 1px #eeeeee;">
  <div style="margin-bottom:-5px; text-align:center; font-weight:bold;">{{{title|Code Sample}}}</div>
  <div style="margin-bottom:-5px; text-align:center; font-weight:bold;">{{{title|Title}}}</div>
  <div style="margin:5px; border:1px dashed #bb8866;">
  <div style="margin:5px; border:1px dashed #bb8866;">
   <div style="margin-top:-12px; margin-bottom:-12px;">{{{code|code}}}</div>
   <div style="margin-top:-12px; margin-bottom:-12px;">{{{code|Code}}}</div>
  </div>
  </div>
</div><noinclude>[[Category:Templates]]<noinclude>
</div><noinclude>[[Category:Templates]]<noinclude>
Line 8: Line 8:
{{clear}}<br>
{{clear}}<br>
== Usage ==
== Usage ==
*<nowiki>{{</nowiki>boxcodelite|'''title'''=Title|'''code'''=Config<nowiki>}}</nowiki>
*<nowiki>{{</nowiki>boxcodelite|'''title'''=Title|'''code'''=Code<nowiki>}}</nowiki>
**This way allows to display some plain text inside the box, consider it a "hack" that eventually could come in handy incase there are problems with the other modes, but better avoid it
**This way allows to display some plain text inside the box, consider it a "hack" that eventually could come in handy incase there are problems with the other modes, but better avoid it
*<nowiki>{{</nowiki>boxcodelite|'''title'''=Title|'''float'''=left|'''code'''=Config<nowiki>}}</nowiki>
*<nowiki>{{</nowiki>boxcodelite|'''title'''=Title|'''float'''=left|'''code'''=Code<nowiki>}}</nowiki>
**By default it floats to right, but can be configured to float left
**By default it floats to right, but can be configured to float left
*<nowiki>{{</nowiki>boxcodelite|'''title'''=Title|'''code'''=<nowiki><pre></nowiki>Config<nowiki></pre>}}</nowiki>
*<nowiki>{{</nowiki>boxcodelite|'''title'''=Title|'''code'''=<nowiki><pre></nowiki>Code<nowiki></pre>}}</nowiki>
**This displays the texts "preformatted", preserves linespaces, black monospace font on top of white background
**This displays the texts "preformatted", preserves linespaces, black monospace font on top of white background
*<nowiki>{{</nowiki>boxcodelite|'''title'''=Title|'''code'''=<nowiki><syntaxhighlight</nowiki> lang=bash>Config<nowiki></syntaxhighlight>}}</nowiki>
*<nowiki>{{</nowiki>boxcodelite|'''title'''=Title|'''code'''=<nowiki><syntaxhighlight</nowiki> lang=bash>Code<nowiki></syntaxhighlight>}}</nowiki>
**This displays the texts with color highlights for the '''lang=[https://www.mediawiki.org/wiki/Extension:SyntaxHighlight#Supported_languages supported_programming_languages]''', if there is no language that fits use '''lang=[https://en.wikipedia.org/wiki/Bash_%28Unix_shell%29 bash]'''
**This displays the texts with color highlights for the '''lang=[https://www.mediawiki.org/wiki/Extension:SyntaxHighlight#Supported_languages supported_programming_languages]''', if there is no language that fits use '''lang=[https://en.wikipedia.org/wiki/Bash_%28Unix_shell%29 bash]'''



Revision as of 08:23, 30 August 2021

Title
Code


Usage

  • {{boxcodelite|title=Title|code=Code}}
    • This way allows to display some plain text inside the box, consider it a "hack" that eventually could come in handy incase there are problems with the other modes, but better avoid it
  • {{boxcodelite|title=Title|float=left|code=Code}}
    • By default it floats to right, but can be configured to float left
  • {{boxcodelite|title=Title|code=<pre>Code</pre>}}
    • This displays the texts "preformatted", preserves linespaces, black monospace font on top of white background
  • {{boxcodelite|title=Title|code=<syntaxhighlight lang=bash>Code</syntaxhighlight>}}


When this template was created (august 2021) the <syntaxhighlight> extension is broken in this wiki, so the result of <syntaxhighlight> or <pre> is exactly the same, but better use the display mode with the <syntaxhighlight> as a prevention because eventually the <syntaxhighlight> extension could be fixed

Examples

BLJM85001
VERSION = 0xFFFFFFFF
S3D.ENABLE = 2
SDRAM_SIZE = 02800000
MIPS_CODE_BLOCK_SIZE = 8192
BLJM85001
VERSION = 0xFFFFFFFF
S3D.ENABLE = 2
SDRAM_SIZE = 02800000
MIPS_CODE_BLOCK_SIZE = 8192