Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@winhamwr
Created June 19, 2012 19:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save winhamwr/2956136 to your computer and use it in GitHub Desktop.
Save winhamwr/2956136 to your computer and use it in GitHub Desktop.
WYMeditor embed plugin with video/source support
/**
* WYMeditor : what you see is What You Mean web-based editor
* Copyright (c) 2005 - 2009 Jean-Francois Hovinne, http://www.wymeditor.org/
* Dual licensed under the MIT (MIT-license.txt)
* and GPL (GPL-license.txt) licenses.
*
* For further information visit:
* http://www.wymeditor.org/
*
* File Name:
* jquery.wymeditor.embed.js
* Experimental embed plugin
*
* File Authors:
* Jonatan Lundin (jonatan.lundin a-t gmail dotcom)
* Roger Hu (roger.hu a-t gmail dotcom)
* Scott Nixon (citadelgrad a-t gmail dotcom)
*/
(function () {
function removeItem(item, arr) {
for (var i = arr.length; i--;) {
if (arr[i] === item) {
arr.splice(i, 1);
}
}
return arr;
}
if (WYMeditor && WYMeditor.XhtmlValidator._tags.param.attributes) {
WYMeditor.XhtmlValidator._tags.embed = {
"attributes":[
"allowscriptaccess",
"allowfullscreen",
"height",
"src",
"type",
"width"
]
};
WYMeditor.XhtmlValidator._tags.param.attributes = {
'0':'name',
'1':'type',
'valuetype':/^(data|ref|object)$/,
'2':'valuetype',
'3':'value'
};
WYMeditor.XhtmlValidator._tags.iframe = {
"attributes":[
"allowfullscreen",
"width",
"height",
"src",
"title",
"frameborder"
]
};
WYMeditor.XhtmlValidator._tags.video = {
"attributes":[
"data-setup",
"width",
"height"
]
};
WYMeditor.XhtmlValidator._tags.source = {
"attributes":[
"src",
"type"
]
};
// Override the XhtmlSaxListener to allow param, embed and iframe.
//
// We have to do an explicit override
// of the function instead of just changing the startup parameters
// because those are only used on creation, and changing them after
// the fact won't affect the existing XhtmlSaxListener
var XhtmlSaxListener = WYMeditor.XhtmlSaxListener;
WYMeditor.XhtmlSaxListener = function () {
var listener = XhtmlSaxListener.call(this);
// param, embed and iframe should be inline tags so that they can
// be nested inside other elements
removeItem('param', listener.block_tags);
listener.inline_tags.push('param');
listener.inline_tags.push('embed');
listener.inline_tags.push('iframe');
listener.inline_tags.push('video');
listener.inline_tags.push('source');
return listener;
};
WYMeditor.XhtmlSaxListener.prototype = XhtmlSaxListener.prototype;
}
})();
@matthijskooijman
Copy link

I've created a version of this that also adds the audio tag and allows all attributes documented by w3schools. I also had some problems to nest a source tag inside a video tag, which were fixed by marking video as a block tag rather than inline. See: https://gist.github.com/matthijskooijman/8c9d17d8983e29e11dfe72c4716e12a5

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment