# Sane backend for Kodak s2000w series (network)
-It is a sane backend ([SANE - Scanner Access Now Easy](http://sane-project.org))
-for the [scanner s2000w series](https://www.kodakalaris.com/de/scanners/s2080w-scanner)
+It is a sane backend ([SANE - Scanner Access Now Easy][sane])
+for the [scanner s2000w series][alaris]
It communicate with the scanner over the network. (RESTful API)
**IMPORTANT NOTE**
No guarantee of correctness and no guarantee of up-to-dateness. It is a private
project, i want to use the Kodak Alaris S2080W Scanner over the network under
-Debian. Original Dokumentation for the Scanner find under the Kodak Alaris
-Website.
-https://www.kodakalaris.com/en/scanners/s2080w-scanner
+Debian. Original Dokumentation for the Scanner find under the [Kodak Alaris
+Website][alaris].
## Content
### Build dependencies
-- [sane](https://sane-project.gitlab.io/standard/api.html) - sane project
-- [confuse](https://www.nongnu.org/confuse/manual/index.html) - read config file
-- [curl](https://curl.se/libcurl) - communicate with scanner
-- [json-c](https://json-c.github.io/json-c/json-c-current-release/doc/html/index.html) - parse response
-- [jpeg](https://libjpeg-turbo.org) - read color and gray jpeg
-- [tiff](https://libtiff.gitlab.io/libtiff) - read bw tiff
-- [netpbm](https://netpbm.sourceforge.net) - write pnm image
-- [imagemagick](https://imagemagick.org/script/magick-core.php) - convert jpg to pnm
+- [sane][sane-docu] - sane project
+- [confuse][confuse-docu] - read config file
+- [curl][curl-docu] - communicate with scanner
+- [json-c][json-c-docu] - parse response
+- [jpeg][jpeg-docu] - read color and gray jpeg
+- [tiff][tiff-docu] - read bw tiff
+- [netpbm][netpbm-docu] - write pnm image
+- [imagemagick][imagemagick-docu] - convert jpg to pnm
- pthread - heartbeat interval sleep
### Test dependencies
-- [cmocka](https://api.cmocka.org/) - test framwork
-- [cppcheck](https://sourceforge.net/p/cppcheck/wiki/Home/) - static code analysis
+- [cmocka][cmocka] - test framwork
+- [cppcheck][cppcheck]- static code analysis
## Build
```bash
KDS_S2000W_NET_DEBUG=6 xsane
-```
\ No newline at end of file
+```
+
+[alaris]: https://www.kodakalaris.com/en/scanners/s2080w-scanner
+[sane]: http://sane-project.org
+[sane-docu]: https://sane-project.gitlab.io/standard/api.html
+[confuse-docu]: https://www.nongnu.org/confuse/manual/index.html
+[curl-docu]: https://curl.se/libcurl
+[json-c-docu]: https://json-c.github.io/json-c/json-c-current-release/doc/html/index.html
+[jpeg-docu]: https://libjpeg-turbo.org
+[tiff-docu]: https://libtiff.gitlab.io/libtiff
+[netpbm-docu]: https://netpbm.sourceforge.net
+[imagemagick-docu]: https://imagemagick.org/script/magick-core.php
+[cmocka]: https://api.cmocka.org/
+[cppcheck]: https://sourceforge.net/p/cppcheck/wiki/Home/
\ No newline at end of file