Method: IsoDoc::Convert#html_doc_path
- Defined in:
- lib/isodoc/convert.rb
#html_doc_path(*file) ⇒ Object
76 77 78 79 80 81 82 |
# File 'lib/isodoc/convert.rb', line 76 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 |