*/
if (_styleBinding != null || _hiliteBinding != null || _isPlain) {
AWEncodedString userStyle = encodedStringValueForBinding(_styleBinding);
if (userStyle != null || _isPlain) {
AWResponse response = response();
response.appendContent(Constants.Space);
response.appendContent(Constants.Style);
response.appendContent(Constants.Equals);
response.appendContent(Constants.Quote);
if (_isPlain) {
response.appendContent(PlainStyle);
}
if (userStyle != null) {
response.appendContent(userStyle);
}
response.appendContent(Constants.Quote);
}
}
return null;
}