Unicode options

Certain options must use unicode values. For example, the site name could contain German umlauts or French accents or be in Chinese or Hebrew. Because of this, you must use unicode strings for those items. Unicode strings are defined by prefixing the letter u to the string. Here are some examples:

    # Site name, used by default for wiki name-logo [Unicode]
    sitename = u"Jürgen's Wiki"
    # another example:
    sitename = u'ÔÕÕÙçÙ éÜ ÙÕèÒß'

Read the comments in the configuration file - they tell you which options must use Unicode values.

Notes: