fixed escaping of quotes and voice service menu
Signed-off-by: Kai Kreuzer <kai@openhab.org>pull/137/head
parent
af5a9f8f2e
commit
6f06701be9
|
@ -1,4 +1,4 @@
|
|||
id,label,description
|
||||
mactts,MacOS Text-to-Speech,"The MacOS Text-to-Speech (TTS) service uses the MacOS "say" command for producing spoken text."
|
||||
mactts,MacOS Text-to-Speech,"The MacOS Text-to-Speech (TTS) service uses the MacOS 'say' command for producing spoken text."
|
||||
marytts,Mary Text-to-Speech,"The Mary Text-to-Speech (TTS) service is a pure Java implementation of a TTS service, which uses the [MaryTTS](http://mary.dfki.de/) project of DFKI."
|
||||
voicerss,VoiceRSS Text-to-Speech,"VoiceRSS is an Internet based TTS service hosted at http://api.voicerss.org."
|
||||
|
|
Can't render this file because it contains an unexpected character in line 2 and column 84.
|
|
@ -64,7 +64,7 @@
|
|||
</li>
|
||||
<li><a href="{{docu}}/addons/voice.html">Voice Services</a>
|
||||
<ul>
|
||||
{% for binding in site.data.voice %}
|
||||
{% for voice in site.data.voice %}
|
||||
<li><a href="{{docu}}/addons/voice/{{ voice.id }}/readme.html">{{ voice.label }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
|
4
pom.xml
4
pom.xml
|
@ -245,7 +245,7 @@
|
|||
}
|
||||
} else {
|
||||
if(firstHeadline && line.trim().size() > 0) {
|
||||
description = line.trim()
|
||||
description = line.trim().replace('\"', '\'')
|
||||
break
|
||||
}
|
||||
}
|
||||
|
@ -318,7 +318,7 @@
|
|||
}
|
||||
} else {
|
||||
if(firstHeadline && line.trim().size() > 0) {
|
||||
description = line.trim()
|
||||
description = line.trim().replace('\"', '\'')
|
||||
break
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue