()
| 3333 | } |
| 3334 | |
| 3335 | function indent() { |
| 3336 | inText = false; |
| 3337 | if (!start && insideIndentedElement() && !isInPre()) { |
| 3338 | writer._append("\n"); |
| 3339 | for (var i = 0; i < indentationLevel; i++) { |
| 3340 | writer._append(indentation); |
| 3341 | } |
| 3342 | } |
| 3343 | } |
| 3344 | |
| 3345 | function isInPre() { |
| 3346 | return _.some(stack, function(tagName) { |
no test coverage detected