Editor


  1. Plain text
  2. Block
  3. Attributes
  4. Tags
  5. Paragraph
  6. Image
  7. Code
Plain text

Block
Line of code HTML code
{ <div>
} </div>

Attributes
Line of code HTML code
[id=1 class='c1 c2' flag] lorem ipsum <span id=1 class='c1 c2' flag>lorem ipsum</span>
[id=1][flag] lorem ipsum <span id=1 flag>lorem ipsum</span>
[id=1] { lorem ipsum } <div id=1>lorem ipsum</div>

Tags
Line of code HTML code
tag[] lorem ipsum <tag>text</tag>
tag[a1 a2='x y'] lorem ipsum <tag a1 a2='x y'>lorem ipsum</tag>
tag:
  lorem ipsum
:tag
<tag>
  lorem ipsum
</tag>
tag[a1 a2='x y']:
  lorem ipsum
:tag
<tag a1 a2='x y'>
  lorem ipsum
</tag>

Paragraph

Image
Line of code
img(title='...';src='...')
img(title='...';src='...';attrs='a1=x a2="y z" a3')

Code
Line of code
code(language){
...
}code