Module RD::RD2HTMLExtVisitor::HeadElement
In: rd/rd2html-ext-lib.rb

Methods

html_head  

Public Instance methods

[Source]

     # File rd/rd2html-ext-lib.rb, line 223
223:       def html_head
224:         ret = %|<head>\n|
225:           ret << html_title + "\n"
226:           ret << html_content_type + "\n" if html_content_type
227:         ret << link_to_css + "\n" if link_to_css
228:         ret << forward_links + "\n" if forward_links
229:         ret << backward_links + "\n" if backward_links
230:         ret << head + "\n" if head
231:         ret << %Q[</head>]
232:       end

[Validate]