mirror of
https://github.com/textmate/textmate.git
synced 2026-01-22 21:27:56 -05:00
The help indexer requires the pages to be valid XML and (silently) fails to generate the proper index (with anchors) when they are not. This fixes issue #548.
22 lines
643 B
HTML
22 lines
643 B
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
|
"http://www.w3.org/TR/html4/strict.dtd">
|
|
|
|
<html>
|
|
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<%- meta_data.each do |key, value| -%>
|
|
<meta name="<%= key %>" content="<%= value %>" />
|
|
<%- end -%>
|
|
<link href="css/stylesheet.css" rel="stylesheet" type="text/css" />
|
|
<%- css_files.each do |css| -%>
|
|
<link rel="stylesheet" type="text/css" href="<%= css %>" charset="utf-8" />
|
|
<%- end -%>
|
|
<%- js_files.each do |js| -%>
|
|
<script type="text/javascript" src="<%= js %>" charset="utf-8"></script>
|
|
<%- end -%>
|
|
<title><%= page_title %></title>
|
|
</head>
|
|
|
|
<body>
|