MarkGo
A lanuage for mark and go by kl.
Mark Go is a lanugage that can be able to use markups and make simply calculations.
The compiler is based on `python` where is compiles source code into `html` docs.
The idle powered by pygame.
Resources
Reference
General
When you write a MarkGo program, you must write this code:
LANGUAGE MARKGO
And add a statement at the end of every non-first line.
The program will skip everything in '', e.g:
'Hello, hello, hello'
! Sign
Use ! to visit root elements.

!HEAD

!HEAD is an element to include external files and set general datas.
!HEAD.set.title:"Hello"
The above code set the document title into "Hello".
Of course, it allows ? sign. Import css and js files like this:
!HEAD.import.js:"test.js"
!HEAD.import.css:"test.css"
? Sign
Use ? to visit variables . Use = to give the variable a value, e.g:
#CREATE.p;
?p = <NEW-ELEMENT p>;
                    
Use <NEW-ELEMENT > to make a element like <> </> And use + to append a value, e.g:
#CREATE.p;
?p = <NEW-ELEMENT p>;
?p + "Hello".
                    
The program added the text "Hello" into the element, you can add another element into it too.
# Sign
# was used to execute functions, e.g:
#CREATE.var
The program creates a variable called var.
@ Sign
Still developing.