Closed tomaskulich closed 9 years ago
According to documentation:
tika.text('http://www.ohchr.org/EN/UDHR/Documents/UDHR_Translations/eng.pdf', function(err, text, meta) { // ... });
should work. However, later in the documentation is stated that you need to call tika.extract to get also the metadata; tika.text feeds callback only with extracted text. (confirmed by an experiment :) )
tika.extract
tika.text
Thank you! :space_invader:
According to documentation:
should work. However, later in the documentation is stated that you need to call
tika.extract
to get also the metadata;tika.text
feeds callback only with extracted text. (confirmed by an experiment :) )