aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDario2020-09-23 22:32:32 +0200
committerGitHub2020-09-23 22:32:32 +0200
commit0990ddfbdb63a5683d6f94513842dae37166c838 (patch)
treefb6968fbf061e02ce43a89196fd2df42fba86ee9
parent88a7bda9d101401699d6c8cc73d3e7aad971f0c4 (diff)
downloadpdf_form-0990ddfbdb63a5683d6f94513842dae37166c838.tar.bz2
Update README.md
-rw-r--r--README.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/README.md b/README.md
index b8911e3..c59d354 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,10 @@
# Fill PDF Forms
-A library to programatically identify and fill out PDF forms
+A library to programatically identify and fill out PDF forms.
+
+**WARNING**: This is a fork of the original "pdf_form" crate made by [jsandler18](https://github.com/jsandler18), including all improvements made by [malte-v](https://github.com/malte-v).
## Example Code
-### Read a PDF and discover the form fields
+Read a PDF and discover the form fields
```rust
extern crate pdf_form;
use pdf_form::{Form, FieldType};
@@ -18,7 +20,7 @@ for type in field_types {
```
-### Write to the form fields
+Write to the form fields
```rust
extern crate pdf_form;
use pdf_form::{Form, FieldState};