From: gruby@... (John) Date: 2003-12-13T02:17:01+09:00 Subject: Creating HTML tags I would like to be able to use the HTML generation methods from the cgi library without instantiating a new CGI. Can I do this? I've tried saying include CGI::HtmlExtension require 'cgi' class Thing include CGI::HtmlExtension def initialize puts blockquote() {"hello"} end end but I get cgi.rb:1382:in `blockquote': super: no superclass method `blockquote' (NoMethodError)