elm_entry_common.h: added more description to elm_entry_utf8_to_markup api.

This commit is contained in:
Daniel Juyung Seo 2013-10-25 14:05:09 +09:00
parent 200e3a0127
commit a2a9f26a4c
1 changed files with 5 additions and 0 deletions

View File

@ -240,6 +240,11 @@ EAPI char *elm_entry_markup_to_utf8(const char *s);
* @param s The string (in UTF-8) to be converted
* @return The converted string (in markup). It should be freed.
*
* For example, passing "<align=center>hello</align>&gt;" will return
* "&lt;align=center&gt;hello&lt;/align&gt; &amp;gt;". This is useful when you
* want to display "&" in label, entry, and some widgets which use textblock
* internally.
*
* @ingroup Entry
*/
EAPI char *elm_entry_utf8_to_markup(const char *s);