-
Notifications
You must be signed in to change notification settings - Fork 74
/
apidefinitions.html
35 lines (32 loc) · 1.05 KB
/
apidefinitions.html
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
---
title: API Docs - API Definitions
section: API Definitions
permalink: /apidefinitions/
---
<section class="row">
<section class="row">
<blockquote class="warning">
While the <code>condenser_api.*</code> calls are ready for use, all other appbase methods are currently works in progress and may change, or be unsuitable for production use.
</blockquote>
</section>
</section>
{% assign sorted_collections = site.collections | where:'title', "API Definitions" %}
{% for collection in sorted_collections %}
{% assign sorted_docs = collection.docs | sort: "position" %}
{% for doc in sorted_docs %}
<section id="section-{{doc.id | slugify}}" class="row {{ doc.id | slugify }}">
<h3>
<a id="{{ doc.id | slugify }}">
{{ doc.title }}
{% if doc.type %}
<span class="endpoint {{ doc.type }}"></span>
{% endif %}
</a>
</h3>
{% if doc.description %}
<p class="description">{{doc.description}}</p>
{% endif %}
{{ doc.content | replace: "<dl>", "<h6>Parameters</h6><dl>" }}
</section>
{% endfor %}
{% endfor %}