Class: RedmineWikiExporterModule::Constant
- Inherits:
-
Object
- Object
- RedmineWikiExporterModule::Constant
- Defined in:
- lib/redmine_wiki_exporter/constant.rb
Class Method Summary collapse
Class Method Details
.css ⇒ Object
27 28 |
# File 'lib/redmine_wiki_exporter/constant.rb', line 27 def self.css end |
.footer ⇒ Object
19 20 21 22 23 24 25 |
# File 'lib/redmine_wiki_exporter/constant.rb', line 19 def self. <<EOS </div> </body> </html> EOS end |
.header ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/redmine_wiki_exporter/constant.rb', line 5 def self.header <<EOS <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>docs</title> <link href="style.css" media="all" rel="stylesheet" type="text/css" /> </head> <body> <div class="wiki"> EOS end |