Xenharmonic Wiki:Article guidelines: Difference between revisions

Ganaram inukshuk (talk | contribs)
m sample code was broken; did my best to fix it
Ganaram inukshuk (talk | contribs)
Line 31: Line 31:
Certain characters and character sequences have special meanings in Wiki markup, and sometimes need to be escaped using escape templates. The use of such templates should generally be done as a last resort. When displaying preformatted code, the use of escape templates is highly discouraged as doing so makes code snippets difficult to read in the source editor.
Certain characters and character sequences have special meanings in Wiki markup, and sometimes need to be escaped using escape templates. The use of such templates should generally be done as a last resort. When displaying preformatted code, the use of escape templates is highly discouraged as doing so makes code snippets difficult to read in the source editor.


'''Incorrect'''
'''Incorrect source text'''
<pre><nowiki>{{((}}Example Template{{))}}</nowiki></pre>
<pre><nowiki>{{((}}Example Template{{))}}</nowiki></pre>


'''Correct'''
'''Correct source text'''
<pre><nowiki>{{Example template}}</nowiki></pre>
<pre><nowiki>{{Example template}}</nowiki></pre>