Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 391 Bytes

README.md

File metadata and controls

17 lines (10 loc) · 391 Bytes

fontconfig-parser

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

Example

use fontconfig_parser::FontConfig;

let mut config = FontConfig::default();

config.merge_config("/etc/fonts/fonts.conf").unwrap();

License: MIT