mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-13 19:03:18 +00:00
Imported CKEDITOR 3.0
Monotone-Parent: 5f9c08dd6b5b34d815ddb2108abbf4055e846934 Monotone-Revision: b2cf7eda0ef8f15fb6e78f8c38a7406a47bcdd2f Monotone-Author: crobert@inverse.ca Monotone-Date: 2009-08-26T14:03:12 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -145,8 +145,56 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
});
|
||||
})();
|
||||
|
||||
/**
|
||||
* Whether to use HTML entities in the output.
|
||||
* @type Boolean
|
||||
* @default true
|
||||
* @example
|
||||
* config.entities = false;
|
||||
*/
|
||||
CKEDITOR.config.entities = true;
|
||||
|
||||
/**
|
||||
* Whether to convert some Latin characters (Latin alphabet No. 1, ISO 8859-1)
|
||||
* to HTML entities. The list of entities can be found at the
|
||||
* <a href="http://www.w3.org/TR/html4/sgml/entities.html#h-24.2.1">W3C HTML 4.01 Specification, section 24.2.1</a>.
|
||||
* @type Boolean
|
||||
* @default true
|
||||
* @example
|
||||
* config.entities_latin = false;
|
||||
*/
|
||||
CKEDITOR.config.entities_latin = true;
|
||||
|
||||
/**
|
||||
* Whether to convert some symbols, mathematical symbols, and Greek letters to
|
||||
* HTML entities. This may be more relevant for users typing text written in Greek.
|
||||
* The list of entities can be found at the
|
||||
* <a href="http://www.w3.org/TR/html4/sgml/entities.html#h-24.3.1">W3C HTML 4.01 Specification, section 24.3.1</a>.
|
||||
* @type Boolean
|
||||
* @default true
|
||||
* @example
|
||||
* config.entities_greek = false;
|
||||
*/
|
||||
CKEDITOR.config.entities_greek = true;
|
||||
|
||||
/**
|
||||
* Whether to convert all remaining characters, not comprised in the ASCII
|
||||
* character table, to their relative numeric representation of HTML entity.
|
||||
* For example, the phrase "This is Chinese: 汉语." is outputted
|
||||
* as "This is Chinese: &#27721;&#35821;."
|
||||
* @type Boolean
|
||||
* @default false
|
||||
* @example
|
||||
* config.entities_processNumerical = true;
|
||||
*/
|
||||
CKEDITOR.config.entities_processNumerical = false;
|
||||
|
||||
/**
|
||||
* An additional list of entities to be used. It's a string containing each
|
||||
* entry separated by a comma. Entities names or number must be used, exclusing
|
||||
* the "&" preffix and the ";" termination.
|
||||
* @default '#39' // The single quote (') character.
|
||||
* @type String
|
||||
* @example
|
||||
*/
|
||||
CKEDITOR.config.entities_additional = '#39';
|
||||
|
||||
Reference in New Issue
Block a user