Module: HS::HTMLPreview

Included in:
ChapterPreview, CoursePreview
Defined in:
lib/hs/preview/html_preview.rb

Instance Method Summary collapse

Instance Method Details

#html_previewObject



5
6
7
8
9
10
11
12
13
# File 'lib/hs/preview/html_preview.rb', line 5

def html_preview
  body = yield
  [
    '<html>',
    head_element,
    body,
    '</html>'
  ].compact.join("\n")
end