# File lib/maruku/output/to_html.rb, line 301
        def maruku_html_signature              
                div = Element.new 'div'
                        div.attributes['class'] = 'maruku_signature'
                        Element.new 'hr', div
                        span = Element.new 'span', div
                                span.attributes['style'] = 'font-size: small; font-style: italic'
                                span << Text.new('Created by ')
                                a = Element.new('a', span)
                                        a.attributes['href'] = 'http://maruku.rubyforge.org'
                                        a.attributes['title'] = 'Maruku: a Markdown-superset interpreter for Ruby'
                                        a << Text.new('Maruku')
                                span << Text.new(nice_date+".")
                div
        end