diff options
| author | Dario | 2020-09-23 22:30:34 +0200 |
|---|---|---|
| committer | GitHub | 2020-09-23 22:30:34 +0200 |
| commit | 88a7bda9d101401699d6c8cc73d3e7aad971f0c4 (patch) | |
| tree | a987137d4efd5fdcf38c71149026aad07c1c67d6 /README.md | |
| parent | 1f43c2da8648de9cd28db903a35289c87a7dec1d (diff) | |
| download | pdf_form-88a7bda9d101401699d6c8cc73d3e7aad971f0c4.tar.bz2 | |
Update README.md
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -2,8 +2,8 @@ A library to programatically identify and fill out PDF forms ## 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}; @@ -17,8 +17,9 @@ 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}; |
