8000 Add links to the documenation · mlamby/chaiscript.github.io@2f5ba10 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2f5ba10

Browse files
committed
Add links to the documenation
1 parent fba38d4 commit 2f5ba10

File tree

2 files changed

+53
-0
lines changed

2 files changed

+53
-0
lines changed

_includes/header.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@
3232
<li {% if page.url == '/examples.html'%} class='active' {% endif %}>
3333
<a href="/examples.html">Examples</a>
3434
</li>
35+
<li {% if page.url == '/docs.html'%} class='active' {% endif %}>
36+
<a href="/docs.html">Docs</a>
37+
</li>
3538
<li {% if page.url == '/support.html'%} class='active' {% endif %}>
3639
<a href="/support.html">Support</a>
3740
</li>

docs.html

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
title: Support
3+
---
4+
5+
<!DOCTYPE HTML>
6+
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
7+
8+
<head>
9+
<title>ChaiScript - Documentation.</title>
10+
{% include common.html %}
11+
12+
</head>
13+
14+
15+
<body>
16+
17+
{% include header.html %}
18+
19+
<div class="well well-sm">
20+
<h3>Detailed ChaiScript <a href="/docs/5/index.html">documentation</a> is currently generated via Doxygen.</h3>
21+
22+
More succinct examples are coming soon-ish. If you'd like to help please <a href="http://blog.emptycrate.com/contact">contact</a> us.
23+
</div>
24+
25+
26+
<div class="body-with-margin">
27+
<div class="panel panel-success">
28+
<div class="panel-heading">
29+
<h4><a href="docs/5/index.html#gettingstarted">Getting Started With The API</a>: how to use the API</li></h4>
30+
</div>
31+
<ul class="list-group">
32+
<li class="list-group-item"><a href="docs/5/index.html#functionobjects">Function Objects</a>: passing functions between ChaiScript and C++. Call your script from your C++ and your C++ from your script, typesafely.</li>
33+
<li class="list-group-item"><a href="docs/5/index.html#exceptions">Exceptions</a>: handling cross-language exceptions typesafely and seamlessly.</li>
34+
<li class="list-group-item"><a href="docs/5/index.html#operatoroverloading">overload operators</a>: you can even add new operato 8000 rs seen by ChaiScript to your C++ classes.</li>
35+
</ul>
36+
</div>
37+
38+
<div class="panel panel-success">
39+
<div class="panel-heading">
40+
<h4><a href="docs/5/_lang_getting_started.html">Getting Started With Scripting</a>: how to use the ChaiScript scripting language</h4>
41+
</div>
42+
43+
<ul class="list-group">
44+
<li class="list-group-item"><a href="docs/5/_lang_object_system_ref.html">Object System Reference</a>: defining objects inside of ChaiScript</li>
45+
<li class="list-group-item"><a href="docs/5/_lang_standard_library_ref.html">Standard Library</a>: the set of built in scripting functions</li>
46+
<li class="list-group-item"><a href="docs/5/_lang_keyword_ref.html">Keyword Reference</a>: the general language syntax and usage</li>
47+
</ul>
48+
</div>
49+
50+
</body>

0 commit comments

Comments
 (0)
0