Login, Or Sign-Up
 

Editing Formatting Help

In Chameleo Community site, every writing form can recognize the wiki syntax mannger, especially Trac wiki style.
For more formatting help, visit Wiki Formatting Help page.


= Heading1 =
Heading1
== Heading2 ==
Heading2
=== Heading3 ===
Heading3
'''bold'''
bold
''italic''
italic
~~strike~~
strike
^superscript^
superscript
,,subscript,,
subscript
{{{
inline code
}}}
inline code

Indent lists 2 spaces or TAB :
  * bullet item
  • bullet item
  1. numbered list
  1. numbered list
  1. bullet item
  2. bullet item
----

[http://domain/page]
http://domain/page
[http://domain/page label]
label
||Cell 1||Cell 2||Cell 3||
||Cell 4||Cell 5||Cell 6||
Cell 1Cell 2Cell 3
Cell 4Cell 5Cell 6
>> Someone's original text
> Someone else's reply text
My reply text

Someone's original text

Someone else's reply text

My reply text

!NoHyperLink
!#42 is not a link
!NoHyperLink !#42 is not a link
{{{
#!html
<h1 style="
	text-align: right;
	color: blue;
">
	HTML Test
</h1>
}}}

HTML Test

{{{
#!python
class Test:
   def __init__(self):
      print "Hello World"

if __name__ == '__main__':
   Test()
}}}
class Test:
    def __init__(self):
        print "Hello World"
if __name__ == '__main__':
   Test()