(element, messages, options)
| 211 | } |
| 212 | |
| 213 | function convertParagraph(element, messages, options) { |
| 214 | return htmlPathForParagraph(element, messages).wrap(function() { |
| 215 | var content = convertElements(element.children, messages, options); |
| 216 | if (ignoreEmptyParagraphs) { |
| 217 | return content; |
| 218 | } else { |
| 219 | return [Html.forceWrite].concat(content); |
| 220 | } |
| 221 | }); |
| 222 | } |
| 223 | |
| 224 | function htmlPathForParagraph(element, messages) { |
| 225 | var style = findStyle(element); |
nothing calls this directly
no test coverage detected