(attributes)
| 3376 | } |
| 3377 | |
| 3378 | function generateAttributeString(attributes) { |
| 3379 | return _.map(attributes, function(value, key) { |
| 3380 | return util.format(' %s="%s"', key, escapeHtmlAttribute(value)); |
| 3381 | }).join(""); |
| 3382 | } |
| 3383 | |
| 3384 | function text(value) { |
| 3385 | fragments.push(escapeHtmlText(value)); |
no test coverage detected