katana 是一个纯 C 语言实现的 CSS 解析器。
Katana is inspired by Gumbo, so it has some goals and features same as Gumbo.
Goals & features:
Simple API that can be easily wrapped by other languages. Relatively lightweight, with no outside dependencies. Support for fragment parsing.
Non-goals:
立即学习“前端免费学习笔记(深入)”;
Mutability. Katana is intentionally designed to turn a style sheet into a parse tree, and free that parse tree all at once. It’s not designed to persistently store nodes or subtrees outside of the parse tree, or to perform arbitrary style mutations within your program. If you need this functionality, we recommend translating the Katana parse tree into a mutable style representation more suited for the particular needs of your program before operating on it.
Wishlist:
Fully conformant with the CSS-syntax. Hackable dump or print. Robust and resilient to bad input. Full-featured error reporting. Additional performance improvements. Tested on Official W3C Test Suites.
示例代码:
#include "katana.h" int main() { const char* css = "selector { property: value }"; KatanaOutput* output = katana_parse(css, strlen(css), KatanaParserModeStylesheet); // Do stuff with output, eg. print the input style katana_dump_output(output); katana_destroy_output(output);}
登录后复制
项目主页:http://www.open-open.com/lib/view/home/1429781099479
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/3101812.html