Questions about this topic? Sign up to ask in the talk tab.
Difference between revisions of "Test"
From NetSec
m (Unprotected "Test") |
|||
| (19 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | = Test Page = | |
| + | |||
| + | == Common Templates == | ||
| + | |||
| + | === Quote === | ||
| + | |||
| + | <nowiki>{{Quote|do your homework|hatter}}</nowiki> | ||
| + | |||
| + | {{Quote|do your homework|hatter}} | ||
| + | |||
| + | === Cleanup === | ||
| + | |||
| + | <nowiki>{{cleanup}}>></nowiki> | ||
{{cleanup}} | {{cleanup}} | ||
| + | |||
| + | === Boxes === | ||
| + | |||
| + | |||
| + | ==== Protip ==== | ||
| + | <nowiki>{{Protip| Your text here}}</nowiki> | ||
| + | |||
| + | {{Protip| Your text here}} | ||
| + | |||
| + | |||
| + | ==== Info ==== | ||
| + | |||
| + | <nowiki>{{Info|Testing Info}}</nowiki> | ||
| + | |||
{{Info|Testing Info}} | {{Info|Testing Info}} | ||
| + | |||
| + | ==== Notice ==== | ||
| + | |||
| + | <nowiki>{{Notice|Testing Notice}}</nowiki> | ||
| + | |||
{{Notice|Testing Notice}} | {{Notice|Testing Notice}} | ||
| + | |||
| + | ==== Warning ==== | ||
| + | |||
| + | <nowiki>{{Warning|Testing Warning}}</nowiki> | ||
| + | |||
{{Warning|Testing Warning}} | {{Warning|Testing Warning}} | ||
| + | |||
| + | === Key Combinations === | ||
| + | |||
| + | <nowiki>{{Key|</nowiki>'''KEY'''<nowiki>}}</nowiki> | ||
| + | |||
| + | ==== Example ==== | ||
{{Key|Ctrl}} {{Key|Alt}} {{Key|Del}} | {{Key|Ctrl}} {{Key|Alt}} {{Key|Del}} | ||
| + | === Code Highlighting === | ||
| + | |||
| + | <nowiki> | ||
| + | <syntaxhighlight lang="</nowiki>'''LANG'''<nowiki>"></nowiki> | ||
| + | <syntaxhighlight lang="php"> | ||
| + | /* | ||
| + | * | ||
| + | Your code here | ||
| + | * | ||
| + | */ | ||
| + | </syntaxhighlight> | ||
| + | <nowiki></syntaxhighlight></nowiki> | ||
| + | |||
| + | |||
| + | |||
| + | ==== Example ==== | ||
<syntaxhighlight lang="php"> | <syntaxhighlight lang="php"> | ||
<?php | <?php | ||
| − | + | $v = "string"; // sample initialization | |
| − | + | echo $v; // end of php code | |
| − | + | ||
| − | + | ||
| − | + | ||
?> | ?> | ||
</syntaxhighlight> | </syntaxhighlight> | ||
| + | |||
| + | === Code Boxes === | ||
| + | |||
| + | <nowiki> | ||
| + | {{code|text= | ||
| + | |||
| + | /* | ||
| + | |||
| + | * | ||
| + | |||
| + | Note: This can be used in conjunction with <syntaxhighlight lang=" "> and <source lang=" "> | ||
| + | |||
| + | * | ||
| + | |||
| + | */ | ||
| + | |||
| + | }} | ||
| + | </nowiki> | ||
| + | {{code|text= | ||
| + | <syntaxhighlight lang="php"> | ||
| + | /* | ||
| + | * | ||
| + | Note: This can be used in conjunction with <syntaxhighlight lang=" "> and <source lang=" "> | ||
| + | * | ||
| + | */ | ||
| + | </syntaxhighlight> | ||
| + | }} | ||
| + | |||
| + | === Wikitable === | ||
| + | |||
| + | <syntaxhighlight lang="html4strict"> | ||
<tab class=wikitable sep=comma head=top> | <tab class=wikitable sep=comma head=top> | ||
Head 1,Head 2,Head 3 | Head 1,Head 2,Head 3 | ||
| Line 24: | Line 110: | ||
Field 7,Field 8,Field 9 | Field 7,Field 8,Field 9 | ||
</tab> | </tab> | ||
| + | </syntaxhighlight> | ||
| + | |||
| + | |||
| + | === Example === | ||
| + | |||
| + | <tab class=wikitable sep=comma head=top> | ||
| + | Head 1,Head 2,Head 3 | ||
| + | Field 4,Field 5,Field 6 | ||
| + | Field 7,Field 8,Field 9 | ||
| + | </tab> | ||
| + | |||
| + | |||
| + | <toggledisplay>text</toggledisplay> | ||
| + | |||
| + | |||
| + | === Social Media === | ||
| + | call this template with:<nowiki>{{social}}</nowiki> | ||
| + | |||
| + | ===Example=== | ||
| + | {{social}} | ||
| + | |||
| + | |||
| + | |||
| + | ===Exploitation=== | ||
| + | |||
| + | called with: <nowiki>{{exploitation}}</nowiki> | ||
| + | |||
| + | ===Example=== | ||
| + | |||
| + | {{exploitation}} | ||
Latest revision as of 00:18, 3 June 2015
Contents
Test Page
Common Templates
Quote
{{Quote|do your homework|hatter}}
| hatter says |
|---|
| do your homework |
Cleanup
{{cleanup}}>>
Boxes
Protip
{{Protip| Your text here}}
Protip: Your text here
Info
{{Info|Testing Info}}
|
Testing Info |
Notice
{{Notice|Testing Notice}}
Notice: Testing Notice
Warning
{{Warning|Testing Warning}}
|
Testing Warning |
Key Combinations
{{Key|KEY}}
Example
Ctrl Alt Del
Code Highlighting
<syntaxhighlight lang="LANG"> <syntaxhighlight lang="php"> /*
* Your code here * */
</syntaxhighlight> </syntaxhighlight>
Example
<syntaxhighlight lang="php"> <?php
$v = "string"; // sample initialization echo $v; // end of php code
?> </syntaxhighlight>
Code Boxes
{{code|text= /* * Note: This can be used in conjunction with <syntaxhighlight lang=" "> and <source lang=" "> * */ }} {{code|text= <syntaxhighlight lang="php"> /*
*Note: This can be used in conjunction with <syntaxhighlight lang=" "> and
* */ </syntaxhighlight> }} === Wikitable === <syntaxhighlight lang="html4strict"> <tab class=wikitable sep=comma head=top> Head 1,Head 2,Head 3 Field 4,Field 5,Field 6 Field 7,Field 8,Field 9 </tab> </syntaxhighlight> === Example === <tab class=wikitable sep=comma head=top> Head 1,Head 2,Head 3 Field 4,Field 5,Field 6 Field 7,Field 8,Field 9 </tab> <toggledisplay>text</toggledisplay> === Social Media === call this template with:<nowiki>{{social}}</nowiki> ===Example=== {{social}} ===Exploitation=== called with: <nowiki>{{exploitation}}</nowiki> ===Example=== {{exploitation}}