Шаблон:Издвојени цитат
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
— Корисник:Aca 15:28, 26. новембар 2020. (UTC)
Употреба
уредиШаблон се користи за цитирање коментара уредника на страницама за разговор. Може се користити и при увлачењу параграфа.
Параметри
уреди- Unnamed (positional) parameters
{{talkquote|text|by}}
- text must come before by (if by is specified).
- Using named parameters
{{talkquote|text=text|by=by|source=source|ts=ts|oldid=oldid}}
- Explanation of named parameters
-
- text: The text being quoted (required).
- by: The author of the text being quoted (not required).
- source: The source of the text being quoted (not required). Use instead of by when source is not individual user.
- oldid: The revision ID of the edit introducing the change that was made (not required).
- ts: The timestamp of the text being quoted (not required unless
diff
is specified).
Примери
уреди{{talkquote|some random text|Example}}
gives:some random text
— Корисник:Example
{{talkquote|more random text|Example|ts=~~~~~}}
gives:more random text
— Корисник:Example 08:52, 21 May 2011 (UTC)
{{talkquote|different random text|Example|ts=~~~~~|oldid=139992}}
gives:different random text
— Корисник:Example 08:52, 21 May 2011 (UTC)
Увлачење параграфа
уредиThe following wiki-markup:
Random paragraph of text. [[User:Example|Example]] ([[User talk:Example|talk]]) 09:20, 21 May 2011 (UTC) :Opening statement by [[User:User|Some other user]]. :{{talkquote|Quoting an item from random paragraph.}} :Response to quoted text. [[User:User|Some other user]] ([[User talk:User|talk]]) ~~~~~
Gives the following:
Random paragraph of text. Example (talk) 09:20, 21 May 2011 (UTC)
- Opening statement by Some other user.
Quoting an item from random paragraph.
- Response to quoted text. Some other user (talk) 09:26, 21 May 2011 (UTC)
Листе цитирања
уредиIf the text you are quoting is a bulleted or numbered list, the first list item must start on a new line, or it won't be rendered properly. For example:
Wiki-markup | Output |
---|---|
Wrong way
{{talkquote|* Item one * Item two }} |
First item isn't bulleted correctly:
|
Right way
{{talkquote| * Item one * Item two }} |
All items are bulleted correctly:
|
If you are using the |text=
named parameter, the MediaWiki parser automatically removes line breaks at the start of the text, causing the list to be displayed improperly. To stop this happening, add <nowiki />
after the =
sign:
Wiki-markup | Output |
---|---|
Wrong way
{{talkquote|text= # Item one # Item two }} |
First item isn't numbered correctly:
|
Right way
{{talkquote|text=<nowiki /> # Item one # Item two }} |
All items are numbered correctly:
|