(element, messages)
| 222 | } |
| 223 | |
| 224 | function htmlPathForParagraph(element, messages) { |
| 225 | var style = findStyle(element); |
| 226 | |
| 227 | if (style) { |
| 228 | return style.to; |
| 229 | } else { |
| 230 | if (element.styleId) { |
| 231 | messages.push(unrecognisedStyleWarning("paragraph", element)); |
| 232 | } |
| 233 | return defaultParagraphStyle; |
| 234 | } |
| 235 | } |
| 236 | |
| 237 | function convertRun(run, messages, options) { |
| 238 | var nodes = function() { |
no test coverage detected