diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-08-30 13:11:09 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-08-30 13:11:09 -0400 |
commit | 19a252d9a3d63e7816f9a77bab65bd161675440a (patch) | |
tree | f2ff11c130dd2208215fd2488aa95143f4ffb7b0 /pango/pango-engine.h | |
parent | 5d319c5989d599e9e867df76795eb81472b4db7a (diff) | |
download | pango-19a252d9a3d63e7816f9a77bab65bd161675440a.tar.gz |
Fix leftover markup in docs
Diffstat (limited to 'pango/pango-engine.h')
-rw-r--r-- | pango/pango-engine.h | 59 |
1 files changed, 29 insertions, 30 deletions
diff --git a/pango/pango-engine.h b/pango/pango-engine.h index 0b8abbe3..470c1eae 100644 --- a/pango/pango-engine.h +++ b/pango/pango-engine.h @@ -182,10 +182,9 @@ struct _PangoEngineShape * appropriately using pango_glyph_string_set_size()). All fields * of the @log_clusters and @glyphs array must be filled in, with * the exception that Pango will automatically generate - * <literal>glyphs->glyphs[i].attr.is_cluster_start</literal> - * using the @log_clusters array. Each input character must occur in one - * of the output logical clusters; - * if no rendering is desired for a character, this may involve + * `glyphs->glyphs[i].attr.is_cluster_start` using the @log_clusters + * array. Each input character must occur in one of the output logical + * clusters; if no rendering is desired for a character, this may involve * inserting glyphs with the #PangoGlyph ID #PANGO_GLYPH_EMPTY, which * is guaranteed never to render. If the shaping fails for any reason, * the shaper should return with an empty (zero-size) glyph string. @@ -345,8 +344,8 @@ prefix ## _register_type (GTypeModule *module) \ /** * PANGO_ENGINE_LANG_DEFINE_TYPE: - * @name: Name of the the type to register (for example:, <literal>ArabicEngineFc</literal> - * @prefix: Prefix for symbols that will be defined (for example:, <literal>arabic_engine_fc</literal> + * @name: Name of the the type to register (for example:, `ArabicEngineFc`) + * @prefix: Prefix for symbols that will be defined (for example:, `arabic_engine_fc`) * @class_init: Class initialization function for the new type, or %NULL * @instance_init: Instance initialization function for the new type, or %NULL * @@ -354,19 +353,19 @@ prefix ## _register_type (GTypeModule *module) \ * #PangoEngineLang class defined in a module. Two static symbols * are defined. * - * <programlisting> - * static GType <replaceable>prefix</replaceable>_type; - * static void <replaceable>prefix</replaceable>_register_type (GTypeModule module); - * </programlisting> + * |[<!-- language="C" --> + * static GType `prefix`_type; + * static void `prefix`_register_type (GTypeModule module); + * ]| * - * The <function><replaceable>prefix</replaceable>_register_type()</function> - * function should be called in your script_engine_init() function for - * each type that your module implements, and then your script_engine_create() - * function can create instances of the object as follows: + * The `prefix`_register_type() function should be called in your + * script_engine_init() function for each type that your module implements, + * and then your script_engine_create() function can create instances of the + * object as follows: * - * <informalexample><programlisting> - * PangoEngine *engine = g_object_new (<replaceable>prefix</replaceable>_type, NULL); - * </programlisting></informalexample> + * |[<!-- language="C" --> + * PangoEngine *engine = g_object_new (`prefix`_type, NULL); + * ]| **/ #define PANGO_ENGINE_LANG_DEFINE_TYPE(name, prefix, class_init, instance_init) \ PANGO_ENGINE_DEFINE_TYPE (name, prefix, \ @@ -375,8 +374,8 @@ prefix ## _register_type (GTypeModule *module) \ /** * PANGO_ENGINE_SHAPE_DEFINE_TYPE: - * @name: Name of the the type to register (for example:, <literal>ArabicEngineFc</literal> - * @prefix: Prefix for symbols that will be defined (for example:, <literal>arabic_engine_fc</literal> + * @name: Name of the the type to register (for example:, `ArabicEngineFc`) + * @prefix: Prefix for symbols that will be defined (for example:, `arabic_engine_fc`) * @class_init: Class initialization function for the new type, or %NULL * @instance_init: Instance initialization function for the new type, or %NULL * @@ -384,19 +383,19 @@ prefix ## _register_type (GTypeModule *module) \ * #PangoEngineShape class defined in a module. Two static symbols * are defined. * - * <programlisting> - * static GType <replaceable>prefix</replaceable>_type; - * static void <replaceable>prefix</replaceable>_register_type (GTypeModule module); - * </programlisting> + * |[<!-- language="C" --> + * static GType `prefix`_type; + * static void `prefix`_register_type (GTypeModule module); + * ]| * - * The <function><replaceable>prefix</replaceable>_register_type()</function> - * function should be called in your script_engine_init() function for - * each type that your module implements, and then your script_engine_create() - * function can create instances of the object as follows: + * The `prefix`_register_type() function should be called in your + * script_engine_init() function for each type that your module implements, + * and then your script_engine_create() function can create instances of the + * object as follows: * - * <informalexample><programlisting> - * PangoEngine *engine = g_object_new (<replaceable>prefix</replaceable>_type, NULL); - * </programlisting></informalexample> + * |[<!-- language="C" --> + * PangoEngine *engine = g_object_new (`prefix`_type, NULL); + * ]| **/ #define PANGO_ENGINE_SHAPE_DEFINE_TYPE(name, prefix, class_init, instance_init) \ PANGO_ENGINE_DEFINE_TYPE (name, prefix, \ |