diff options
| author | Jake Sandler | 2020-09-25 10:48:26 -0400 |
|---|---|---|
| committer | GitHub | 2020-09-25 10:48:26 -0400 |
| commit | 8003d0724cf86fcf8eb58b8d84f17a9af318a90e (patch) | |
| tree | 0e2f1eca6f6621b7307388b91edb5fdde1f4a78e /README.md | |
| parent | 1f43c2da8648de9cd28db903a35289c87a7dec1d (diff) | |
| parent | 631f0d8b2fcc3427d8c8765883a23f6bcd61cfd4 (diff) | |
| download | pdf_form-8003d0724cf86fcf8eb58b8d84f17a9af318a90e.tar.bz2 | |
Merge pull request #5 from Emulator000/required-readonly-improvements
Various improvements and added ability to read "readonly" and "required" fields flags
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ A library to programatically identify and fill out PDF forms ## Example Code * Read a PDF and discover the form fields -``` +```rust extern crate pdf_form; use pdf_form::{Form, FieldType}; @@ -18,7 +18,7 @@ for type in field_types { ``` * Write to the form fields -``` +```rust extern crate pdf_form; use pdf_form::{Form, FieldState}; |
