纯 C 语言实现的 CSS 解析器:katana_html/css_WEB-ITnose
程序员文章站
2022-05-29 22:41:04
...
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
上一篇: k8s中基于资源锁的选主分析
下一篇: tpl文件里写PHP代码不识别怎么办
推荐阅读
-
让ICON生动起来 纯CSS实现带动画的天气图标_html/css_WEB-ITnose
-
求一个简单的纯CSS3的实现_html/css_WEB-ITnose
-
一款纯css3实现的超炫动画背画特效_html/css_WEB-ITnose
-
一款纯css3实现的机器人看书动画效果_html/css_WEB-ITnose
-
求教,QQ和YY那个弹窗结构是用什么语言结构?html?xml?结合的是c c++ 还是?_html/css_WEB-ITnose
-
一款纯css3实现的颜色渐变按钮_html/css_WEB-ITnose
-
服务器端C#实现的CSS解析器
-
纯c语言优雅地实现矩阵运算库的方法
-
服务器端C#实现的CSS解析器
-
一款纯css3实现的响应式导航_html/css_WEB-ITnose