2016-11-11 08:41:49 +00:00
|
|
|
---
|
|
|
|
layout: documentation
|
|
|
|
---
|
|
|
|
|
|
|
|
{% include base.html %}
|
|
|
|
|
2016-12-10 23:14:12 +00:00
|
|
|
# Available Voice Services
|
2016-11-11 08:41:49 +00:00
|
|
|
|
|
|
|
{% assign voices = "" | split: "|" %}
|
|
|
|
{% for voice in site.data.voice %}{% assign voices = voices | push: voice %}{% endfor %}
|
|
|
|
{% assign sorted_voices = voices | sort: "id" %}
|
|
|
|
|
|
|
|
| Voice Service | Description |
|
|
|
|
|-------|----------------------|
|
|
|
|
{% for voice in sorted_voices %}| [{{ voice.label }}]({{docu}}/addons/voice/{{ voice.id }}/readme.html) | {{ voice.description }} |
|
2016-12-10 23:14:12 +00:00
|
|
|
{% endfor %}
|