Wikitext: Difference between revisions
Line 34: | Line 34: | ||
Instead you can use [[Wikipedia: Help:Footnotes#List-defined_references]]. | Instead you can use [[Wikipedia: Help:Footnotes#List-defined_references]]. | ||
< | <syntaxhighlight lang="xml"> | ||
{{reflist|refs= | {{reflist|refs= | ||
<ref name="name1">Content</ref> | <ref name="name1">Content</ref> | ||
Line 40: | Line 40: | ||
<ref name="name...n">Content</ref> | <ref name="name...n">Content</ref> | ||
}} | }} | ||
</ | </syntaxhighlight> |
Revision as of 15:12, 3 September 2020
Code
Inline code can by represented with <code></code>
Code blocks should be like:
<syntaxhighlight lang="cpp"> // ... my code here </syntaxhighlight>
Math
Math is written in standard latex syntax inside of <math></math>.
- Beware: Do not use
||
, use\Vert
instead. - The attribute
display
can be used to control the rendering style. See Mediawikiwiki: Extension:Math/Displaystyle.display="inline"
renders inline math inline.display="block"
renders display math which separate and centered.- Omitting display will render display math inline.
Images
Line Breaks
Line breaks are usually done with:
<br>
or<br />
for new lines- Two new lines for paragraph breaks
Download my extension Mediawikiwiki: Extension:LineBreaks to use two spaces and a new line as a line break.
References
Referenced are defined using the <ref>
tag inline.
I'm actually pretty opposed to formatting all references inline with the wikitext.
They should be centralized somewhere else such as in a references section.
Instead you can use Wikipedia: Help:Footnotes#List-defined_references.
{{reflist|refs=
<ref name="name1">Content</ref>
<ref name="name2">Content</ref>
<ref name="name...n">Content</ref>
}}