Sha256: 7a8535f5073f033e49d4ad9b47d3099bcb20d3a0f86ec405ded3afebfcc1feb3

Contents?: true

Size: 1.09 KB

Versions: 64

Compression:

Stored size: 1.09 KB

Contents

/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/

(function()
{
	var spacesRegex = /[\t\r\n ]{2,}|[\t\r\n]/g;

	/**
	 * A lightweight representation of HTML text.
	 * @constructor
	 * @example
	 */
 	CKEDITOR.htmlParser.text = function( value )
	{
		/**
		 * The text value.
		 * @type String
		 * @example
		 */
		this.value = value;

		/** @private */
		this._ =
		{
			isBlockLike : false
		};
	};

	CKEDITOR.htmlParser.text.prototype =
	{
		/**
		 * The node type. This is a constant value set to {@link CKEDITOR.NODE_TEXT}.
		 * @type Number
		 * @example
		 */
		type : CKEDITOR.NODE_TEXT,

		/**
		 * Writes the HTML representation of this text to a CKEDITOR.htmlWriter.
		 * @param {CKEDITOR.htmlWriter} writer The writer to which write the HTML.
		 * @example
		 */
		writeHtml : function( writer, filter )
		{
			var text = this.value;

			if ( filter && !( text = filter.onText( text, this ) ) )
				return;

			writer.text( text );
		}
	};
})();

Version data entries

64 entries across 64 versions & 5 rubygems

Version Path
classiccms-0.7.5 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.7.4 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.7.3 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.7.2 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.7.1 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.7.0 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.6.9 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.6.8 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.6.7 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.6.6 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.6.5 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.6.4 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.6.3 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.6.2 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.6.1 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.6.0 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.5.17 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.5.16 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.5.15 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js
classiccms-0.5.14 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/text.js