HTML parser library implemented in C99
- HTML 58.3%
- C 32.5%
- C++ 4.1%
- Ragel 3.6%
- Python 1.2%
| benchmarks | ||
| doc | ||
| examples | ||
| fuzz | ||
| python/gumbo | ||
| src | ||
| testdata@f994590f52 | ||
| tests | ||
| visualc/include | ||
| .clang-format | ||
| .gitignore | ||
| .gitmodules | ||
| autogen.sh | ||
| CHANGES.md | ||
| configure.ac | ||
| Doxyfile | ||
| gentags.sh | ||
| gumbo.pc.in | ||
| Makefile.am | ||
| meson.build | ||
| meson_options.txt | ||
| README.md | ||
| setup.py | ||
Gumbo - HTML parser library implemented in C99
Gumbo is an implementation of the HTML5 parsing algorithm implemented as a pure C99 library with no outside dependencies. It's designed to serve as a building block for other tools and libraries such as linters, validators, templating languages, and refactoring and analysis tools. This repository adheres to all the original ideas of the archived GitHub repository, which has not seen any development since 2016.
Goals & features:
- Fully conformant with the HTML5 spec.
- Robust and resilient to bad input.
- Simple API that can be easily wrapped by other languages.
- Support for source locations and pointers back to the original text.
- Support for fragment parsing.
- Relatively lightweight, with no outside dependencies.
- Passes all html5lib tests.
- Tested on over 2.5 billion pages from Google's index.
- Follows Semantic Versioning scheme.
Non-goals:
- Execution speed. Gumbo gains some of this by virtue of being written in C, but it is not an important consideration for the intended use-case, and was not a major design factor.
- Support for encodings other than UTF-8. For the most part, client code can convert the input stream to UTF-8 text using another library before processing.
- Mutability. Gumbo is intentionally designed to turn an HTML document 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 DOM mutations within your program. If you need this functionality, we recommend translating the Gumbo parse tree into a mutable DOM representation more suited for the particular needs of your program before operating on it.
Basic usage
#include <gumbo.h>
int main() {
GumboOutput* output = gumbo_parse("<h1>Hello, World!</h1>");
// Do stuff with output->root
gumbo_destroy_output(&kGumboDefaultOptions, output);
}
A variety of sample programs can be found in the examples directory.
To build them, enable the examples build option during setup, e.g.:
meson setup builddir -Dexamples=true
Learning more
- Building instructions: doc/building.md
- Language bindings and other tools: doc/bindings.md
- Contributing guide: doc/contributing.md
- Debugging notes: doc/debugging.md
- Maintenance directions: doc/maintaining.md
- Test suite guide: doc/testing.md