From: Matthias Clasen Date: Sat, 1 Feb 2014 15:14:59 +0000 (-0500) Subject: GKeyFile: Convert docs to markdown X-Git-Tag: 2.39.4~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=c4da8f426a89f85fa752e262b58ba650d47d38cd;p=platform%2Fupstream%2Fglib.git GKeyFile: Convert docs to markdown In particular, convert lists to markdown syntax. --- diff --git a/glib/gkeyfile.c b/glib/gkeyfile.c index d8c01bb..6ee3c74 100644 --- a/glib/gkeyfile.c +++ b/glib/gkeyfile.c @@ -132,20 +132,21 @@ * * This syntax is obviously inspired by the .ini files commonly met * on Windows, but there are some important differences: - * - * .ini files use the ';' character to begin comments, - * key files use the '#' character. - * Key files do not allow for ungrouped keys meaning only - * comments can precede the first group. - * Key files are always encoded in UTF-8. - * Key and Group names are case-sensitive. For example, a - * group called [GROUP] is a different from - * [group]. - * .ini files don't have a strongly typed boolean entry type, - * they only have GetProfileInt(). In key files, only - * true and false (in lower case) - * are allowed. - * + * + * - .ini files use the ';' character to begin comments, + * key files use the '#' character. + * + * - Key files do not allow for ungrouped keys meaning only + * comments can precede the first group. + * + * - Key files are always encoded in UTF-8. + * + * - Key and Group names are case-sensitive. For example, a group called + * [GROUP] is a different from [group]. + * + * - .ini files don't have a strongly typed boolean entry type, + * they only have GetProfileInt(). In key files, only + * true and false (in lower case) are allowed. * * Note that in contrast to the * Desktop