From: sooyeon.kim Date: Wed, 16 Dec 2020 08:55:58 +0000 (+0900) Subject: Remove unnecessary HTML link for feature X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Ftizen_5.0;p=platform%2Fcore%2Fuifw%2Fvoice-control-elm.git Remove unnecessary HTML link for feature Change-Id: I98559bacc062710793dfefd25f5b1b85e1d68343 Signed-off-by: sooyeon.kim --- diff --git a/doc/uix_voice_control_elm_doc.h b/doc/uix_voice_control_elm_doc.h index f9f3e58..d7da12c 100644 --- a/doc/uix_voice_control_elm_doc.h +++ b/doc/uix_voice_control_elm_doc.h @@ -11,7 +11,7 @@ * distributed under the License is distributed on an AS IS BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and - * limitations under the License. + * limitations under the License. */ @@ -21,12 +21,12 @@ * @brief The @ref VOICE_CONTROL_ELEMENTARY_MODULE API provides functions to control widget by voice commands. * @section VOICE_CONTROL_ELEMENTARY_MODULE_HEADER Required Header * \#include - * + * * @section VOICE_CONTROL_ELEMENTARY_MODULE_OVERVIEW Overview * The voice control elementary API is provided for controlling widgets by voice commands. * The voice UI control provided by voice control elementary is done the following way: * - Each widget supported and currently visible in the application is given a text hint.
- * - Widget hints are shown on the User's wish.
+ * - Widget hints are shown on the User's wish.
* - User speaks the hint name of the widget he/she wants to trigger and the action he/she wants to perform on that widget.
* - The voice command is interpreted and the requested action on the widget is performed.
* To use of voice control elementary, use the following steps:
@@ -42,7 +42,7 @@ * And the callback function of action related to widget is called internally, when user speaks a particular widget's hint. * * @image html sample_app_hints.png Example: your application layout with voice control elementary enabled with default settings. - * + * * Here is an example code for supporting voice control elm module : * @code * #include @@ -51,15 +51,15 @@ * void app_control(app_control_h app_control, void *user_data) * { * vc_elm_initialize(); - * vc_elm_set_current_language_changed_cb(_vc_elm_language_changed_cb, NULL); + * vc_elm_set_current_language_changed_cb(_vc_elm_language_changed_cb, NULL); * elm_main(0, (char **)NULL); * } - * + * * void app_terminate(void *user_data) * { * vc_elm_deinitialize(); * } - * + * * int main(int argc, char *argv[]) * { * struct appdata ad; @@ -76,8 +76,8 @@ * return ui_app_main(argc, argv, &event_callback, &ad); * } * @endcode - * - * If you want to create some widgets with voice control, you can refer below function. + * + * If you want to create some widgets with voice control, you can refer below function. * * @code * int elm_main(int argc, char **argv) @@ -106,7 +106,7 @@ * } * @endcode * - * If you want to support several language for voice control elm module, you need to set language changed callback function. + * If you want to support several language for voice control elm module, you need to set language changed callback function. * * @code * void _vc_elm_language_changed_cb(void) @@ -114,11 +114,11 @@ * // You need to update codes in order to change text of command & hint according to changed language. * } * @endcode - * + * * @section VOICE_CONTROL_ELEMENTARY_MODULE_FEATURE Related Features * This API is related with the following features:
- * - http://tizen.org/feature/microphone
- * - http://tizen.org/feature/speech.control
+ * - %http://tizen.org/feature/microphone
+ * - %http://tizen.org/feature/speech.control
* It is recommended to design feature related codes in your application for reliability.
* You can check if a device supports the related features for this API by using @ref CAPI_SYSTEM_SYSTEM_INFO_MODULE, thereby controlling the procedure of your application.
* To ensure your application is only running on the device with specific features, please define the features in your manifest file using the manifest editor in the SDK.