Difference between revisions of "Template:Box Code"
Jump to navigation
Jump to search
| Line 23: | Line 23: | ||
}} | }} | ||
</noinclude> | </noinclude> | ||
<includeonly>{| WIDTH="75%" cellpadding=0 cellspacing=0 style="background-color: # | <includeonly>{| WIDTH="75%" cellpadding=0 cellspacing=0 style="background-color: #f9f9f9; border: solid 1px #000;" | ||
| style="background-color: # | | style="background-color: #fff; border: solid 1px #000;" | <font size="-1">'''File:''' {{{1}}}</font> | ||
|- | |- | ||
| | | | ||
{{{2}}} | {{{2}}} | ||
|}</includeonly> | |}</includeonly> | ||
Revision as of 06:04, 8 January 2016
Note: This page is a template. It contains no Paparazzi related information but should be used as part of other articles. For more information, read Help:Templates.
Please do not experiment with this template, it could mess up all pages using this template.
This template takes two parameters.
filenamewill be displayed as the filename of the code blockcodethe code itself.
If you include the following:
{{Box Code|somefile.txt|
int main(){
printf("hello!\n");
return 0;
}
}}
It will result in the following:
| File: somefile.txt |
int main(){
printf("hello!\n");
return 0;
}
|