Method: IsoDoc::Convert#html_doc_path
- Defined in:
- lib/isodoc/convert.rb
#html_doc_path(*file) ⇒ Object
112 113 114 115 116 117 118 |
# File 'lib/isodoc/convert.rb', line 112 def html_doc_path(*file) file.each do |f| ret = File.join(@libdir, File.join("html", f)) File.exist?(ret) and return ret end nil end |