diff options
Diffstat (limited to 'src/extractors')
| -rw-r--r-- | src/extractors/mod.rs | 2 | ||||
| -rw-r--r-- | src/extractors/pdf.rs | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/extractors/mod.rs b/src/extractors/mod.rs index 0f137f1..cd76a11 100644 --- a/src/extractors/mod.rs +++ b/src/extractors/mod.rs @@ -1 +1,3 @@ +/// This module provides extractors which are not available directly as a crate. + pub mod pdf; diff --git a/src/extractors/pdf.rs b/src/extractors/pdf.rs index b7f65d5..8dfe82f 100644 --- a/src/extractors/pdf.rs +++ b/src/extractors/pdf.rs @@ -1,3 +1,4 @@ +// // MIT License // // Copyright (c) 2016 Junfeng Liu @@ -19,6 +20,10 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. +// +// +// For more information see `https://github.com/J-F-Liu/lopdf/blob/master/examples/extract_text.rs` +// use std::collections::BTreeMap; use std::fmt::Debug; |