Difference between revisions of "Demo:IfStatement"
Jump to navigation
Jump to search
Line 7: | Line 7: | ||
This entry has many attributes, some of the attributes may have empty(null) value. The goal is to demonstrate that we can use the <code>{{#If condition| YES | NO}}</code> structure to determine how to show certain content or not. | This entry has many attributes, some of the attributes may have empty(null) value. The goal is to demonstrate that we can use the <code>{{#If condition| YES | NO}}</code> structure to determine how to show certain content or not. | ||
For example: The data content in <code>{{:Cite:book:Working with MediaWiki}}</code> can be seen here: | |||
<syntaxhighlight lang=MD> | |||
{{cite book | |||
|last=Koren | |||
|first=Yaron | |||
|author-link=Yaron Koren | |||
|title=Working with MediaWiki | |||
|edition=2nd | |||
|url=https://workingwithmediawiki.com | |||
|location= | |||
|publisher=WikiWorks Press | |||
|page= <!-- or pages= --> | |||
|isbn=978-1540761149 | |||
|date=2020 | |||
}} | |||
</syntaxhighlight> |
Revision as of 06:08, 2 July 2021
This page tries to use a set of nested If Statement to demonstrate the logic of Template inclusion:
For example: If there is a book citation, it can be included using the PageName
instruction.
{{:Cite:book:Working with MediaWiki}}
Koren, Yaron (2020). Working with MediaWiki (2nd ed.). local page: WikiWorks Press. ISBN 978-1540761149.
This entry has many attributes, some of the attributes may have empty(null) value. The goal is to demonstrate that we can use the {{#If condition| YES | NO}}
structure to determine how to show certain content or not.
For example: The data content in Koren, Yaron (2020). Working with MediaWiki (2nd ed.). local page: WikiWorks Press. ISBN 978-1540761149.
can be seen here:
{{cite book
|last=Koren
|first=Yaron
|author-link=Yaron Koren
|title=Working with MediaWiki
|edition=2nd
|url=https://workingwithmediawiki.com
|location=
|publisher=WikiWorks Press
|page= <!-- or pages= -->
|isbn=978-1540761149
|date=2020
}}