Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
fix for information loss on footnotes/endnotes within XWPFRun.toString #3
Conversation
|
Thanks, committed in r1492308. (That should mirror through to git shortly) |
Gagravarr
added a commit
that referenced
this pull request
Jun 12, 2013
|
|
Gagravarr |
8185178
|
ischindl
pushed a commit
to ischindl/poi
that referenced
this pull request
Jul 9, 2014
|
|
Gagravarr + |
3c62ed6
|
asfgit
closed this
in 5d79479
Jan 4, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
akhikhl commentedJun 12, 2013
Dear Apache POI Team,
Please consider a problem: whenever MS-Word document with footnotes/endnotes is being parsed with XWPFWordExtractor, information on the location of footnote/endnote references is lost. This information loss is clearly observed in, for example, Apache Tika output.
To reproduce a problem, please insert the following code to TestXWPFWordExtractor.testFootnotes:
then run tests and inspect the content of "footnotes.output.txt" - it contains "Eto ochen prostoy text so snoskoy", where between "prostoy" and "text" there should be a footnote reference (and it is lost).
SOLUTION:
I suggest to introduce additional markup like [footnoteRef:num], [endnoteRef:num], which will allow applications to correctly render footnote references.
Please, see commit details.