我正在使用名为FresherEditor的实用程序,它使用jQuery的ContentEditable插件在浏览器窗口中创建可编辑的文档。然后我需要获取该输出并从通过将HTML管理样式解析为CSS获得的规则生成SVG图形。
新手将产生看起来有点像的输出:
<div>
<p>
<i>
<u>
<b>
<font face="Verdana">
Hello, World!
</font>
</b>
</u>
</i>
</p>
</div>
当我喜欢的东西看起来像是:
<div>
<p style="font-weight: bold; font-style: italic; text-decoration: underline; font-family: Verdana;">
Hello, World!
</p>
</div>
任何建议都会有所帮助。
答案 0 :(得分:1)
这是一个非常有趣的问题;谢谢!以下是添加html2style()
和style2html()
方法的脚本。测试用例显示您可以在两者之间进行转换而不会发生视觉变化(尽管在往返之后元素嵌套的顺序可能会有所不同。)
<强> http://jsfiddle.net/GaPBS/ 强>
(function(scope){
var HTML2CSS = {
strong: function(e){ this.style.fontWeight = "bold"; },
b: function(e){ this.style.fontWeight = "bold"; },
em: function(e){ this.style.fontStyle = "italic"; },
i: function(e){ this.style.fontStyle = "italic"; },
font: function(e){ this.style.fontFamily = e.getAttribute('face'); },
u: function(e){ this.style.textDecoration += ' underline'; },
strike: function(e){ this.style.textDecoration += ' line-through'; }
};
scope.html2style = function(root){
for (var name in HTML2CSS){
var elements = root.querySelectorAll(name);
var styler = HTML2CSS[name];
for (var i=elements.length;i--;){
var toKill = elements[i],
parent = toKill.parentNode;
// Only swap out nodes that are the sole element child of the parent
if (!toKill.nextElementSibling && !toKill.previousElementSibling){
parent.removeChild(toKill);
// Move contents into the parent
for (var kids=toKill.childNodes,j=kids.length;j--;){
parent.insertBefore(kids[j],parent.firstChild);
}
// Merge existing styles from this node onto the parent
parent.style.cssText += toKill.style.cssText;
// Hard set the style for this node onto the parent
styler.call(parent,toKill);
}
}
}
}
})(this);
(function(scope){
var CSS2HTML = {
"fontWeight:bold": "b",
"fontStyle:italic": "i",
"textDecoration:underline": "u",
"textDecoration:line-through": "strike",
"font-family:*": function(value){ var e=document.createElement('font'); e.setAttribute('face',value); return e; }
};
scope.style2html = function(root){
var leaf = root;
for (var style in CSS2HTML){
var elName = CSS2HTML[style],
parts = style.split(':'),
name = parts[0],
wild = parts[1]=="*",
regex = !wild && new RegExp("(^|\\s)"+parts[1]+"(\\s|$)"),
before = root.style[name];
if (before && (wild || regex.test(before))){
var el = (typeof elName==='function') ? elName(before) : document.createElement(elName);
for (var kids=leaf.childNodes,j=kids.length;j--;){
el.insertBefore(kids[j],el.firstChild);
}
leaf = leaf.appendChild(el);
root.style[name]=wild ? "" : before.replace(regex,"");
}
}
if (root.getAttribute('style')=="") root.removeAttribute('style');
}
})(this);