mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-04 02:29:49 -06:00
* Organize properties in one single property tree * Update scenes to work with one property tree. Fix documentation issues.
30 lines
1022 B
Handlebars
30 lines
1022 B
Handlebars
{{#each entries}}
|
|
<div class="documentation-item item-level-{{level name}}">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<p>
|
|
<a href="#{{urlify key}}" name="{{urlify key}}">
|
|
<span class="documentation-type">{{type}}</span>
|
|
<span class="documentation-key">{{key}}</span>
|
|
{{#if optional}}
|
|
<span class="documentation-type">(Optional)</span>
|
|
{{/if}}
|
|
</a>
|
|
</p>
|
|
<p class="documentation-type">{{description}}</p>
|
|
<p class="documentation-description">{{documentation}}</p>
|
|
{{#with restrictions}}
|
|
{{>documentation}}
|
|
{{/with}}
|
|
{{#if reference}}
|
|
{{#if reference.found}}
|
|
<p class="documentation-description">An object of type '<a href="#{{reference.identifier}}">{{reference.name}}</a>'</p>
|
|
{{else}}
|
|
<p class="documentation-description">Missing reference</p>
|
|
{{/if}}
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{/each}}
|