939e7f0e8a
Rocco uses the Docco CSS directly, so when they make an update to the
HTML/CSS, Rocco needs to play along. In this case, Docco changed from
`#` to `¶`, and changed classnames as well (in
[f8a88d66b381a1c04358][]).
This commit migrates that change to Rocco.
[f8a88d66b381a1c04358]:
f8a88d66b3
47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html;charset=utf-8">
|
|
<title>{{ title }}</title>
|
|
<link rel="stylesheet" href="http://jashkenas.github.com/docco/resources/docco.css">
|
|
</head>
|
|
<body>
|
|
<div id='container'>
|
|
<div id="background"></div>
|
|
{{#sources?}}
|
|
<div id="jump_to">
|
|
Jump To …
|
|
<div id="jump_wrapper">
|
|
<div id="jump_page">
|
|
{{#sources}}
|
|
<a class="source" href="{{ url }}">{{ basename }}</a>
|
|
{{/sources}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{/sources?}}
|
|
<table cellspacing=0 cellpadding=0>
|
|
<thead>
|
|
<tr>
|
|
<th class=docs><h1>{{ title }}</h1></th>
|
|
<th class=code></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#sections}}
|
|
<tr id='section-{{ num }}'>
|
|
<td class=docs>
|
|
<div class="pilwrap">
|
|
<a class="pilcrow" href="#section-{{ num }}">¶</a>
|
|
</div>
|
|
{{{ docs }}}
|
|
</td>
|
|
<td class=code>
|
|
<div class='highlight'><pre>{{{ code }}}</pre></div>
|
|
</td>
|
|
</tr>
|
|
{{/sections}}
|
|
</table>
|
|
</div>
|
|
</body>
|