Caio Tiago Oliveira wrote: > Joao Pedrosa, 19/2/2005 10:53: > > BTW, it would be good to expose the head tag somewhere so we could add > >> tags to it, like the link_css. :-) And add the <DOCTYPE> to the >> beginning of the HTML. Anyway of doing this? > > > ;) > > BTW: is impossible to make valid code without it. > The link tag shouldn't be used in the body, its place is the head. > Doctype is also a lot important. Could you send me a sample DOCTYPE? Note that it's easy to do this yourself (nevertheless I'd like to add this to Wee): def render r << "<!DOCTYPE...>" r.html { r.head { ... } r.body { ... } } end Regards, Michael