(footnoteElement)
| 1767 | } |
| 1768 | |
| 1769 | function readFootnoteElement(footnoteElement) { |
| 1770 | var id = footnoteElement.attributes["w:id"]; |
| 1771 | return bodyReader.readXmlElements(footnoteElement.children) |
| 1772 | .map(function(body) { |
| 1773 | return documents.Note({noteType: noteType, noteId: id, body: body}); |
| 1774 | }); |
| 1775 | } |
| 1776 | |
| 1777 | return readNotesXml; |
| 1778 | } |