This crate provide parsing fontconfig file but not yet complete all features
see https://www.freedesktop.org/software/fontconfig/fontconfig-user.html for more detail infomation of fontconfig file
```rust use fontconfigparser::parsedocumentfromstr;
if let Ok(documentstr) = std::fs::readtostring("/etc/fonts/fonts.conf") { let document = parsedocumentfromstr(&document_str).unwrap(); } ```
License: MIT