You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 8, 2019. It is now read-only.
Hi,
Fine job thank's, I need that users writing are readable by other programs that i cannot change, is there a way to get all styles inline without a need for CSS.
best regards
Luis
The text was updated successfully, but these errors were encountered:
This module is deprecated, obsolete and you better find an alternative but if you have no choice you can read below :
Unfortunately there are no proper way to this without editing core files …
You need to had a new entry in attributeCheckMethods object :
source: jaybee@9027cc0
style: (function() {
var REG_EXP = /[^a-z0-9_\-]\:[^a-z0-9_\-];/gi;
return function (attributeValue) {
return attributeValue;
};
})()
And then you have to add the rule for tags needing inline style :
check_attributes: {
"style": "style"
}
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
Fine job thank's, I need that users writing are readable by other programs that i cannot change, is there a way to get all styles inline without a need for CSS.
best regards
Luis
The text was updated successfully, but these errors were encountered: