Difference between revisions of "Template:Quote"

From Projex.Wiki
Jump to navigation Jump to search
Line 6: Line 6:
  
 
<blockquote style="color: lightgrey; border: solid thin gray;">
 
<blockquote style="color: lightgrey; border: solid thin gray;">
    {{{1}}}
+
{{{1}}}
 
</blockquote>
 
</blockquote>
  
Line 16: Line 16:
  
 
<!-- start Documentation -->
 
<!-- start Documentation -->
 +
 +
<nowiki>
 +
 +
Code:
 +
<blockquote style="color: lightgrey; border: solid thin gray;">
 +
{{{1}}}
 +
</blockquote>
  
 
Usage example:
 
Usage example:
<nowiki>{{ quote | The text you want to quote }}</nowiki>
+
{{ quote | The text you want to quote }}
: results in
+
results:
 +
</nowiki>
 
{{ quote | The text you want to quote }}
 
{{ quote | The text you want to quote }}
  
 +
<nowiki>
 
Explanatory example:
 
Explanatory example:
 
"The quick {{{1}}} fox {{{2}}}."
 
"The quick {{{1}}} fox {{{2}}}."
: Then, we can fill the template as
+
Then fill the template as
 
{{quote|brown|jumps}}
 
{{quote|brown|jumps}}
: which translates to
+
results:
 
"The quick brown fox jumps."
 
"The quick brown fox jumps."
  
Line 32: Line 41:
  
 
The #1 in the braces means the first variable of possible several.
 
The #1 in the braces means the first variable of possible several.
 +
 +
</nowiki>
 
   
 
   
 
<!-- end Documentation -->
 
<!-- end Documentation -->

Revision as of 18:46, 8 July 2024





Code: <blockquote style="color: lightgrey; border: solid thin gray;"> {{{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.