2016-12-10 23:14:12 +00:00
|
|
|
---
|
|
|
|
layout: documentation
|
|
|
|
title: Transformations
|
|
|
|
---
|
|
|
|
|
|
|
|
{% include base.html %}
|
|
|
|
|
|
|
|
# Transformations
|
|
|
|
|
2016-12-11 00:22:42 +00:00
|
|
|
Transformations are used to translate between technical and human-readable values for items.
|
|
|
|
|
2017-03-02 15:13:47 +00:00
|
|
|
<table id="transformations-overview" class="bordered addon-table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th data-field="label" width="20%">Name</th>
|
|
|
|
<th data-field="description">Description</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for transformation in site.transformations %}
|
|
|
|
<tr class="install-{{transformation.install}} since-{{transformation.since}}">
|
|
|
|
<td>
|
|
|
|
<h4><a href="{{transformation.url}}">{% if transformation.logo %}<img class="logo" src="{{base}}/{{transformation.logo}}" title="{{ transformation.label }}" alt="{{ transformation.label }}" />{% else %}{{ transformation.label }}{% endif %}</a></h4>
|
|
|
|
<img src="{{base}}/images/tag-install-{{transformation.install}}.svg">
|
|
|
|
</td>
|
|
|
|
<td>{{ transformation.description | markdownify }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|