-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocumentation.html
More file actions
47 lines (43 loc) · 1.31 KB
/
documentation.html
File metadata and controls
47 lines (43 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
layout: default
title: Documentation
group: "navigation"
disqus: true
---
<h1 id="documentation" class="page-header">{{ page.title }}</h1>
<div class="table-responsive">
<table class="table table-condensed" id="status">
<thead>
<tr>
<td width="30%"><em>Package</em></td>
<td>Documentation</td>
</tr>
</thead>
<tbody>
{% for package in site.data.packages %}
{% unless package.status == 'alpha' %}
<tr id="{{ package.github }}">
<td id="{{ package.github }}-name">{{ package.name }}
{% if package.status == 'beta' %}<sup>beta</sup>{% endif %}
</td>
<td id="{{ package.github }}-doc">
<a href="{{ package.github}}/doxygen/HEAD/">git</a>
{% for version in package.releases %}
, <a href="{{ package.github}}/doxygen/v{{ version }}">v{{ version }}</a>
{% endfor %}
</td>
</tr>
{% endunless %}
{% endfor %}
</tbody>
</table>
</div>
<div class="bs-callout bs-callout-info">
<h4>Finding the documentation on your system</h4>
<p>If you have RobOptim installed on your system, the documentation
corresponding to <em>your</em> RobOptim version should also be
available
in <code>/usr/share/doc/roboptim-core/doxygen-html</code>,
<code>/usr/share/doc/roboptim-trajectory/doxygen-html</code></p>
</div>
<div style="padding: 10em"></div>