Difference between revisions of "Template:Quote"

From Projex.Wiki
Jump to navigation Jump to search
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
<!----------------- This "Template:Quote" is by a  
+
<!----------------- This "Template:Quote" is by a first-timer learning to make templates.------------------>
                    first-timer learning to make templates.
 
------------------>
 
 
 
 
<includeonly>
 
<includeonly>
 
+
<blockquote style="
<blockquote style="color: lightgrey; border: solid thin gray;">
+
color: black;
    {{{1}}}
+
border: solid thin gray;
 +
padding-top: 10px;
 +
padding-right: 10px;
 +
padding-bottom: 10px;
 +
padding-left: 10px;
 +
">
 +
{{{1}}}
 
</blockquote>
 
</blockquote>
 
 
</includeonly>
 
</includeonly>
 
 
<!---------------------------------------------------->
 
<!---------------------------------------------------->
 
 
<noinclude>
 
<noinclude>
 +
<!-- start Documentation -->
  
<!-- start Documentation -->
+
Code:</br>
 +
<nowiki><blockquote style="
 +
color: black;
 +
border: solid thin gray;
 +
padding-top: 10px;
 +
padding-right: 10px;
 +
padding-bottom: 10px;
 +
padding-left: 10px;
 +
"></nowiki></br>
 +
<nowiki>  {{{1}}}</nowiki></br>
 +
<nowiki></blockquote></nowiki></br>
  
Usage example:
+
Usage example:</br>
: <nowiki>{{ quote | The text you want to quote }}</nowiki>
+
<nowiki> {{ quote | The text you want to quote }} </nowiki></br>
:: results in
+
results:</br>
: {{ quote | The text you want to quote }}
+
{{ quote | The text you want to quote }}
  
Explanatory example:
+
Explanatory example:</br>
: "The quick {{{1}}} fox {{{2}}}."
+
<nowiki>"The quick {{{1}}} fox {{{2}}}."</nowiki></br>
:: Then, we can fill the template as
+
Then fill the template as</br>
: {{quote|brown|jumps}}
+
<nowiki>{{quote|brown|jumps}}</nowiki></br>
:: which translates to
+
results:</br>
: "The quick brown fox jumps."
+
"The quick brown fox jumps."</br>
* "Quote" is the name of the template.
+
"Quote" is the name of the template.</br>
* The #1 in the braces means the first variable of possible several.
+
The #1 in the braces means the first variable of possible several.</br>
 
   
 
   
 
<!-- end Documentation -->
 
<!-- end Documentation -->
 
 
</noinclude>
 
</noinclude>
  
 
[[Category:Quotes]]
 
[[Category:Quotes]]

Latest revision as of 12:39, 15 July 2024



Code:
<blockquote style=" color: black; border: solid thin gray; padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px; ">
{{{1}}}
</blockquote>

Usage example:
{{ quote | The text you want to quote }}
results:


The text you want to quote

Explanatory example:
"The quick {{{1}}} fox {{{2}}}."
Then fill the template as
{{quote|brown|jumps}}
results:
"The quick brown fox jumps."
"Quote" is the name of the template.
The #1 in the braces means the first variable of possible several.