((sec ("Table of comtents" :toc nil) ;disable toc entry for this section (toc)) (hr) (sec ("Section") (txt "This is text imside section.")) (sec ("Numbered section" :num t) (par (col red (txt "Red") (lnk also) (txt " text that is now ") (bol (txt "bold."))) (br)) (par (ita (txt "Next paragraf has italia text."))) (sec ("Section imside the other one with also number" :num t) (sec ("Smaler section" :id smal :num t) (txt "Som more text") (sec ("Even smaler section" :num t) (txt "Ok") (lnk ucan)) (sec ("More of same" :num t) (txt "Ok2"))) (sec ("Another section") (txt "U can link to same endnote more times") (lnk ucan) (br))) (sec ("Table" :num t) (txt "Table sux not much u can do with it but here is example:") (tab (tr (th (txt "name")) (th (txt "as")) (th (txt "cunt")) (th (txt "tits"))) (tr (td (txt "remy")) (td (bol (txt "thik"))) (td (txt "smely") (lnk cunt)) (td (txt "smal"))) (tr (td (txt "maria")) (td (txt "normal")) (td (txt "nice")) (td (txt "medium"))) (tr (td (txt "briana")) (td (txt "smal")) (td (txt "ok")) (td (txt "BIK"))))) (sec ("Images" :num t) (lnk "http://zzz.st/up/P22ETamS/lego.jpg" (img "http://zzz.st/up/P22ETamS/lego.jpg" :h 150)) (txt " ") (lnk "http://zzz.st/up/U2r4HN49/ribot.jpg" (img "http://zzz.st/up/U2r4HN49/ribot.jpg" :h 150))) (sec ("Lists" :num t) (ul (li (txt "unordred")) (li (txt "list"))) (ol (li (txt "ordred")) (li (txt "list")))) (sec ("Code" :num t) (par (txt "inline: ") (cod (col blue (txt "char const")) (txt " *ass = ") (col gray (txt "\"asda\"")) (txt ";"))) (par (txt "block:") (lnk codeblok) (pre "int main(int argc,char **argv){" " printf(\"programming codes\\n\");" "}"))) (sec ("Text stuf" :num t) (txt "E=mc") (sup (txt "2")) (br) (txt "H") (sub (txt "2")) (txt "O") (br) (und (txt "blabla")) (br) (txt "text that is ") (mar (txt "highlighted")))) (sec ("Links" :num t) (txt "Link to ") (lnk smal (txt "a section")) (br) (txt "Same link but with auto name: ") (lnk smal) (br) (lnk codeblok (txt "Text link")) (txt " to endnote") (br) (txt "Link to ") (lnk "http://zombo.com" (txt "external site"))) (hr) (sec ("Endnotes") (toe)) ;(toe) displays table of endnotes. (end) produces no output and can be placed anywhere (end codeblok (txt "u can only have text inside blok no links or formating")) (end also (txt "u can also specify golor with ") (col \#ff8000 (txt "hex val"))) (end cunt (txt "its very smely. btv end notes are ordred by aperance of links to them")) (end ucan (txt "u can make more nested than this but header dosnt get smaler")))