コンテンツにスキップ
サイドバーの切り替え
検索
日本語
アカウント作成
個人用ツール
アカウント作成
ログイン
ログアウトした編集者のページ
もっと詳しく
トーク
投稿記録
案内
メインページ
人気のページ
利用規約
最近の出来事
最近の更新
おまかせ表示
お問い合わせ
ツール
リンク元
関連ページの更新状況
特別ページ
ページ情報
他言語版
「
テンプレート:Talk quote block/doc
」を編集中
テンプレート
議論
日本語
閲覧
ソースを編集
履歴表示
その他
閲覧
ソースを編集
履歴表示
2023年5月10日 (水) 22:04時点における
Template:Talk quote block>WOSlinker
による版
(syntaxhighlight lang="wikitext")
(差分) ← 古い版 |
最新版
(
差分
) |
新しい版 →
(
差分
)
警告: このページの古い版を編集しています。
公開すると、この版以降になされた変更がすべて失われます。
警告:
ログインしていません。編集を行うと、あなたの IP アドレスが公開されます。
ログイン
または
アカウントを作成
すれば、あなたの編集はその利用者名とともに表示されるほか、その他の利点もあります。
スパム攻撃防止用のチェックです。 けっして、ここには、値の入力は
しない
でください!
{{Documentation subpage}} <!-- Please place categories where indicated at the bottom of this page and interwikis at Wikidata (see [[Wikipedia:Wikidata]]) --> {{redirect|Template:Talkquote|quoting inline|Template:Talk quote inline}} {{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}} {{Template shortcut|tqb|tq2}} {{Uses TemplateStyles|Template:Talk quote block/styles.css}} Use {{tnull|Talk quote block}} or {{tnull|tqb}} to quote (another's comments, a policy statement, etc.) in a block, on talk pages and noticeboards. It can be safely used after colon-indenting as well (see the [[#Indenting|§ Indenting]] example below ({{section link||Caveats}}). For a short inline quote, instead use {{tlx|Talk quote inline}}. == Usage == Unnamed (positional) parameters: * {{tlx|Talk quote block|text|by}} ** The order of positional parameters cannot change - {{var|text}} must come before {{var|by}}. Named parameters: * {{tlx|Talk quote block|text{{=}}|by{{=}}|source{{=}}|ts{{=}}|oldid{{=}}}} == Parameters == * {{para|text}} (or {{para|1}}): The text being quoted. * {{para|by}} (or {{para|2}}): The author of the text being quoted. A [[WP:U|Wikipedia username]] is expected, and the username will be provided as a [[WP:Link|wikilink]] to the author's user page. * {{para|source}}: The source of the text being quoted. Use instead of {{para|by}} when source is not individual user name, or when copy-pasting an entire sig. * {{para|ts}}: The [[WP:Timestamp|timestamp]] of the edit whose text is being quoted. Hint: You can use [[WP:5TILDES|five tildes]] to supply the current date and time: <code><nowiki>|ts=~~~~~</nowiki></code>. * {{para|oldid}}: The [[WP:Revision id|revision ID]] of the edit introducing the change that was made. Displayed as the timestamp linking to the diff of the edit. (requires {{para|ts}} or is not shown). * {{para|diff}}: The revision ID of the [[Help:Diff|diff]] comparing target. * {{para|style}}: [[HTML]] in-line style. (see the [[Template:Talk quote block/testcases#Parameter "style"|testcases]]) * {{para|nodash|y}} or {{para|no-dash|y}}: Suppresses the em dash and space before {{para|source}}, for when pasting a sig that already starts with a dash. == Examples == * {{tlx|Talk quote block|some random text|Example}} gives: <div style="background-color:#f9f9f9; border:1px dashed #3170ab; padding:10px 10px">{{talk quote block|some random text|Example}}</div> * {{tlx|Talk quote block|more random text|Example|ts{{=}}08:52, 21 May 2011 (UTC)}} gives: <div style="background-color:#f9f9f9; border:1px dashed #3170ab; padding:10px 10px">{{talk quote block|more random text|Example|ts=08:52, 21 May 2011 (UTC)}}</div> * {{tlx|Talk quote block|different random text|Example|ts{{=}}08:52, 21 May 2011 (UTC)|oldid{{=}}139992}} gives: <div style="background-color:#f9f9f9; border:1px dashed #3170ab; padding:10px 10px">{{talk quote block|different random text|Example|ts=08:52, 21 May 2011 (UTC)|oldid=139992}}</div> Note: {{para|ts}} must be present for {{para|oldid}} link to show. === Suggested boilerplate === <syntaxhighlight lang="wikitext"> {{Talk quote block|1=<nowiki/> |source=}} </syntaxhighlight> <syntaxhighlight lang="wikitext"> {{Talk quote block|1=<nowiki/> |by=|ts=|oldid=}} </syntaxhighlight> === Indenting === The template works with standard talk page indentation, as the following example illustrates. This wiki-markup: <syntaxhighlight lang="wikitext"> 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]]. :{{talk quote block|Quoting an item from random paragraph.}} :Response to quoted text. [[User:User|Some other user]] ([[User talk:User|talk]]) ~~~~~ </syntaxhighlight> Displays the following: <div style="background-color:#f9f9f9; border:1px dashed #3170ab; padding:3px 10px 3px 10px"> 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]]. :{{talk quote block|Quoting an item from random paragraph.}} :Response to quoted text. [[User:User|Some other user]] ([[User talk:User|talk]]) 09:26, 21 May 2011 (UTC) </div> === Quoting lists === 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: {| class="wikitable" ! Wiki-markup !! Output |- | '''Wrong way''' <syntaxhighlight lang="wikitext"> {{talk quote block|* Item one * Item two }} </syntaxhighlight> | First item isn't bulleted correctly: <div style="background-color:#f9f9f9; border:1px dashed #3170ab; padding:3px 10px 3px 10px"> {{talk quote block|* Item one * Item two }} </div> |- | '''Right way''' <syntaxhighlight lang="wikitext"> {{talk quote block| * Item one * Item two }} </syntaxhighlight> | All items are bulleted correctly: <div style="background-color:#f9f9f9; border:1px dashed #3170ab; padding:3px 10px 3px 10px"> {{talk quote block| * Item one * Item two }} </div> |} If you are using the {{para|text}} named parameter (as opposed to simply supplying your list as the first parameter) please add the following code: <code><nowiki /></code> after the <code>=</code> sign. The reason is that the MediaWiki parser automatically removes line breaks at the start of the text, causing the list to be displayed improperly otherwise. Example: {| class="wikitable" ! Wiki-markup !! Output |- | '''Wrong way''' <syntaxhighlight lang="wikitext"> {{talk quote block|text= # Item one # Item two }} </syntaxhighlight> | First item isn't numbered correctly: <div style="background-color:#f9f9f9; border:1px dashed #3170ab; padding:3px 10px 3px 10px"> {{talk quote block|text= # Item one # Item two }} </div> |- | '''Right way''' <syntaxhighlight lang="wikitext"> {{talk quote block|text=<nowiki /> # Item one # Item two }} </syntaxhighlight> | All items are numbered correctly: <div style="background-color:#f9f9f9; border:1px dashed #3170ab; padding:3px 10px 3px 10px"> {{talk quote block|text=<nowiki /> # Item one # Item two }} </div> |} === Caveats === ==== Complex formatting compatibility ==== Check {{section link||Quoting}}, and {{section link|Help:Table|Nested tables}} (for nesting demo). ==== Quoted URLs with query strings break the template ==== <syntaxhighlight lang="wikitext"> {{Talk quote block|This here diff: https://en.wikipedia.org/w/index.php?title=User:IamNotU/sandbox&diff=904787385&oldid=904785977}} </syntaxhighlight> When your template arguments contain an equals sign, you can't use implicit positional parameters because everything preceding the first equals sign gets parsed as the parameter name. The trick, in those situations, is to make the assignment {{em|explicit}}, so that your entire argument is unambiguously parsed as the value being assigned to that parameter. <syntaxhighlight lang="wikitext"> {{Talk quote block|1=This here diff: https://en.wikipedia.org/w/index.php?title=User:IamNotU/sandbox&diff=904787385&oldid=904785977}} </syntaxhighlight> {{Talk quote block|1=This here diff: https://en.wikipedia.org/w/index.php?title=User:IamNotU/sandbox&diff=904787385&oldid=904785977}} Writing the transclusion as {{tlx|Talk quote block|2=1=...}} puts the entire URL on the right-hand side of an assignment to the first unnamed parameter, rather than it being parsed as a template parameter named <syntaxhighlight lang="wikitext" inline>This here diff: https://en.wikipedia.org/w/index.php?title</syntaxhighlight> that's being assigned the value <syntaxhighlight lang="wikitext" inline>User:IamNotU/sandbox&diff=904787385&oldid=904785977</syntaxhighlight>. Due to [[MediaWiki]]'s parsing limitations, embedding such templates into a [[Help:List|list]] (using the leading <code>*</code>/<code>#</code>/<code>;</code>/<code>:</code> syntax) is very likely to lead to unexpected results (for it regards the [[newline]] as the syntax delimiter [[Special:PermaLink/961705865#Common_mistakes|Help:List §§ Common mistakes]], and [[Special:PermaLink/961705865#Paragraphs_and_other_breaks|Paragraphs and other breaks]]). ==== Play nice with ordered and unordered lists ==== <syntaxhighlight lang="wikitext"> {{Lorem ipsum}} : {{Talk quote block|source=Talk quote block|text=<nowiki/> # Item one # Item two }} </syntaxhighlight> {{Lorem ipsum}} : {{Talk quote block|source=Talk quote block|text=<nowiki/> # Item one # Item two }} <syntaxhighlight lang="wikitext"> <dl><dd>{{Talk quote block|1=<nowiki/> # Item one # Item two|source={{tlx|Talk quote block}}}}</dd></dl> </syntaxhighlight> <dl><dd>{{Talk quote block|1=<nowiki/> # Item one # Item two|source={{tlx|Talk quote block}}}}</dd></dl> == TemplateData == {{templatedata header}} <templatedata> { "params": { "style": { "description": "HTML in-line style." }, "text": { "aliases": [ "1" ], "description": "The text being quoted", "type": "content", "required": true }, "by": { "aliases": [ "2" ], "description": "The author of the text being quoted", "type": "wiki-user-name", "suggested": true }, "source": { "description": "The source of the text being quoted. Use instead of by when source is not individual user name, or when copy-pasting an entire sig.", "type": "line" }, "nodash": { "aliases": [ "no-dash" ], "label": "No dash?", "description": "Suppresses the em dash and space before source, for when pasting a sig that already starts with a dash", "type": "boolean" }, "ts": { "label": "Timestamp", "description": "The timestamp of the edit whose text is being quoted", "suggestedvalues": [ "~~~~~" ], "suggested": true }, "oldid": { "label": "Old ID", "description": "The revision ID of the edit introducing the change that was made. Displayed as the timestamp linking to the Diff of the edit. (requires ts parameter or is not shown)", "type": "number" }, "diff": { "description": "The revision ID of the Diff comparing target.", "type": "number" } }, "description": "Formats quoted text (from another's comments, a policy statement, etc.) in a block, for use on talk pages and noticeboards", "paramOrder": [ "text", "by", "source", "nodash", "ts", "oldid", "diff", "style" ] } </templatedata> == See also == {{Quotation templates}} {{Inline talk templates}} <includeonly>{{Sandbox other|| <!-- Categories below this line, please; interwikis at Wikidata --> [[Category:Talk namespace quotation templates]] }}</includeonly>
編集内容の要約:
Wikiminatiへの投稿はすべて、クリエイティブ・コモンズ 表示-継承 (詳細は
Wikiminati:著作権
を参照)のもとで公開したと見なされることにご注意ください。 自分が書いたものが他の人に容赦なく編集され、自由に配布されるのを望まない場合は、ここに投稿しないでください。
また、投稿するのは、自分で書いたものか、パブリック ドメインまたはそれに類するフリーな資料からの複製であることを約束してください。
著作権保護されている作品は、許諾なしに投稿しないでください!
編集を中止
編集の仕方
(新しいウィンドウで開きます)
このページで使用されているテンプレート:
テンプレート:!tq
(
編集
)
テンプレート:!tqi
(
編集
)
テンプレート:!xt
(
編集
)
テンプレート:Abbr
(
編集
)
テンプレート:Aligned table
(
編集
)
テンプレート:Anchor
(
編集
)
テンプレート:Arbitrary break
(
編集
)
テンプレート:Arbitrarybreak
(
編集
)
テンプレート:Aye
(
編集
)
テンプレート:Buttinsky
(
編集
)
テンプレート:C
(
編集
)
テンプレート:Category handler
(
編集
)
テンプレート:Center
(
編集
)
テンプレート:Clear
(
編集
)
テンプレート:Code
(
編集
)
テンプレート:Define
(
編集
)
テンプレート:Delink
(
編集
)
テンプレート:Documentation subpage
(
編集
)
テンプレート:Ec
(
編集
)
テンプレート:Edit conflict
(
編集
)
テンプレート:Em
(
編集
)
テンプレート:Encodefirst
(
編集
)
テンプレート:FBDB
(
編集
)
テンプレート:Fix
(
編集
)
テンプレート:Hidden ping
(
編集
)
テンプレート:High-use
(
編集
)
テンプレート:Hlist/styles.css
(
編集
)
テンプレート:Hp
(
編集
)
テンプレート:Inline talk templates
(
編集
)
テンプレート:Interrupted
(
編集
)
テンプレート:KISS
(
編集
)
テンプレート:Lorem ipsum
(
編集
)
テンプレート:Lorem ipsum/P1
(
編集
)
テンプレート:Lorem ipsum/p-cond
(
編集
)
テンプレート:Lorem ipsum/p-end-cond
(
編集
)
テンプレート:Main other
(
編集
)
テンプレート:Mbox
(
編集
)
テンプレート:Moved talk
(
編集
)
テンプレート:Moved talk to
(
編集
)
テンプレート:Mxtd
(
編集
)
テンプレート:Nacmt
(
編集
)
テンプレート:Navbox
(
編集
)
テンプレート:No ping
(
編集
)
テンプレート:No ping2
(
編集
)
テンプレート:No redirect
(
編集
)
テンプレート:Non-admin comment
(
編集
)
テンプレート:Noping
(
編集
)
テンプレート:Not watching
(
編集
)
テンプレート:Nowrap
(
編集
)
テンプレート:Np
(
編集
)
テンプレート:Np2
(
編集
)
テンプレート:Nw
(
編集
)
テンプレート:Od
(
編集
)
テンプレート:Od2
(
編集
)
テンプレート:Outdent
(
編集
)
テンプレート:Outdent2
(
編集
)
テンプレート:Para
(
編集
)
テンプレート:Ping group
(
編集
)
テンプレート:Pinged
(
編集
)
テンプレート:Pinggroup
(
編集
)
テンプレート:Plainlist/styles.css
(
編集
)
テンプレート:Please ping
(
編集
)
テンプレート:Please sign inline
(
編集
)
テンプレート:Pong
(
編集
)
テンプレート:Quotation templates
(
編集
)
テンプレート:Re
(
編集
)
テンプレート:Redirect
(
編集
)
テンプレート:Reldis
(
編集
)
テンプレート:Relevant discussion
(
編集
)
テンプレート:Repi
(
編集
)
テンプレート:Reply to
(
編集
)
テンプレート:Request ping
(
編集
)
テンプレート:Responding to ping
(
編集
)
テンプレート:Rtp
(
編集
)
テンプレート:Sandbox other
(
編集
)
テンプレート:Sbb
(
編集
)
テンプレート:Section link
(
編集
)
テンプレート:Sg
(
編集
)
テンプレート:Signote
(
編集
)
テンプレート:Small
(
編集
)
テンプレート:Sock vote
(
編集
)
テンプレート:Strong
(
編集
)
テンプレート:Summoned by bot
(
編集
)
テンプレート:T
(
編集
)
テンプレート:Talk page stalker
(
編集
)
テンプレート:Talk page watcher
(
編集
)
テンプレート:Talk quote block
(
編集
)
テンプレート:Talk quote block/styles.css
(
編集
)
テンプレート:Talk quote inline
(
編集
)
テンプレート:Talk quote inline/styles.css
(
編集
)
テンプレート:Talkfact
(
編集
)
テンプレート:TemplateData header
(
編集
)
テンプレート:Template link
(
編集
)
テンプレート:Template link expanded
(
編集
)
テンプレート:Template link expanded with bold
(
編集
)
テンプレート:Template link expanded with subst
(
編集
)
テンプレート:Template link null
(
編集
)
テンプレート:Template link with bold
(
編集
)
テンプレート:Template link with link off
(
編集
)
テンプレート:Template other
(
編集
)
テンプレート:Template parameter usage
(
編集
)
テンプレート:Template shortcut
(
編集
)
テンプレート:Templatedata header
(
編集
)
テンプレート:Terminate sentence
(
編集
)
テンプレート:Thread retitled
(
編集
)
テンプレート:Tl
(
編集
)
テンプレート:Tlb
(
編集
)
テンプレート:Tlf
(
編集
)
テンプレート:Tlx
(
編集
)
テンプレート:Tlxb
(
編集
)
テンプレート:Tlxs
(
編集
)
テンプレート:Tnull
(
編集
)
テンプレート:To
(
編集
)
テンプレート:Tps
(
編集
)
テンプレート:Tpw
(
編集
)
テンプレート:Tq
(
編集
)
テンプレート:Tq2
(
編集
)
テンプレート:Tqi
(
編集
)
テンプレート:Trim
(
編集
)
テンプレート:Uses TemplateStyles
(
編集
)
テンプレート:Var
(
編集
)
テンプレート:Watching
(
編集
)
テンプレート:Xtag
(
編集
)
テンプレート:Y
(
編集
)
テンプレート:Yesno
(
編集
)
テンプレート:Yesno-no
(
編集
)
テンプレート:\
(
編集
)
モジュール:Aligned table
(
編集
)
モジュール:Anchor
(
編集
)
モジュール:Arguments
(
編集
)
モジュール:Category handler
(
編集
)
モジュール:Category handler/blacklist
(
編集
)
モジュール:Category handler/config
(
編集
)
モジュール:Category handler/data
(
編集
)
モジュール:Category handler/shared
(
編集
)
モジュール:Check for unknown parameters
(
編集
)
モジュール:Delink
(
編集
)
モジュール:Format link
(
編集
)
モジュール:Hatnote
(
編集
)
モジュール:Hatnote/styles.css
(
編集
)
モジュール:Hatnote list
(
編集
)
モジュール:Hidden ping
(
編集
)
モジュール:High-use
(
編集
)
モジュール:List
(
編集
)
モジュール:Message box
(
編集
)
モジュール:Message box/configuration
(
編集
)
モジュール:Message box/ombox.css
(
編集
)
モジュール:MultiReplace
(
編集
)
モジュール:Namespace detect/config
(
編集
)
モジュール:Namespace detect/data
(
編集
)
モジュール:Navbar
(
編集
)
モジュール:Navbar/configuration
(
編集
)
モジュール:Navbar/styles.css
(
編集
)
モジュール:Navbox
(
編集
)
モジュール:Navbox/configuration
(
編集
)
モジュール:Navbox/styles.css
(
編集
)
モジュール:No ping
(
編集
)
モジュール:Outdent
(
編集
)
モジュール:Redirect
(
編集
)
モジュール:Redirect hatnote
(
編集
)
モジュール:Reply to
(
編集
)
モジュール:Section link
(
編集
)
モジュール:Shortcut
(
編集
)
モジュール:Shortcut/config
(
編集
)
モジュール:Shortcut/styles.css
(
編集
)
モジュール:String
(
編集
)
モジュール:TNT
(
編集
)
モジュール:TableTools
(
編集
)
モジュール:Template link general
(
編集
)
モジュール:Transclusion count
(
編集
)
モジュール:Transclusion count/data/T
(
編集
)
モジュール:Uses TemplateStyles
(
編集
)
モジュール:Uses TemplateStyles/config
(
編集
)
モジュール:Yesno
(
編集
)