Method: Markdoc::Renderer#doc_header

Defined in:
lib/markdoc/renderer.rb

#doc_headerObject



28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/markdoc/renderer.rb', line 28

def doc_header
  <<-END
<html>
<head>
  <title>Doc</title>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <style>
#{IO.read File.expand_path('../../../css/style.css', __FILE__)}
#{IO.read File.expand_path('../../../css/pygments.css', __FILE__)}
  </style>
</head>
<body>
END
end