forked from instructure/canvas-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheaders.erb
More file actions
18 lines (18 loc) · 947 Bytes
/
Copy pathheaders.erb
File metadata and controls
18 lines (18 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<meta name="Content-Type" content="text/html;charset=UTF-8">
<meta charset="UTF-8">
<title><%= options[:page_title] %></title>
<link rel="stylesheet" href="<%= url_for("css/common.css") %>" type="text/css" media="screen" charset="utf-8" />
<link href="<%= url_for("css/prettify.css") %>" rel="stylesheet" type="text/css" media="screen" />
<script src="<%= url_for("js/jquery.min.js") %>" type="text/javascript"></script>
<script src="<%= url_for("js/prettify.js") %>" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
// set up pretty-printing in static docs generated from .md files
$('pre.code.bash').addClass('prettyprint language-bash');
$('pre.code.html').addClass('prettyprint language-html');
$('pre.code.xml').addClass('prettyprint language-xml');
$('pre.code.json').addClass('prettyprint language-js');
$('pre.code.javascript').addClass('prettyprint language-js');
prettyPrint();
});
</script>