This repository has been archived by the owner. It is now read-only.

gumbo-crystal

Crystal C bindings for Gumbo library

gumbo-crystal - PROJECT UNMAINTAINED Build Status

This project is not maintained anymore

If you like it or continue to use it fork it please.



Crystal C bindings for Gumbo library, an HTML5 parsing library made by Google - see gumbo-parser

NOTE: actually not all functions are mapped - if you find something missing contact me

Requirements

  • gumbo must be installed - see installation
  • pkg-config must be available

Installation

Add this to your application's shard.yml:

dependencies:
  gumbo-crystal:
    github: blocknotes/gumbo-crystal

Usage

Wrapper access:

require "gumbo-crystal"
output = Gumbo::Output.new LibGumbo.gumbo_parse "<h1>A test</h1>" # wrapper init
p output.root.type
output.uninitialize # wrapper deinit

Direct lib access:

require "gumbo-crystal"
output = LibGumbo.gumbo_parse "<h1>A test</h1>" # lib init
p output.value.root.value.type
LibGumbo.gumbo_destroy_output Gumbo::DefaultOptions, output # lib deinit

More examples

See examples folder.

Contributors

Repository

gumbo-crystal

Owner
Statistic
  • 3
  • 1
  • 0
  • 0
  • 0
  • about 4 years ago
  • January 4, 2017
License

MIT License

Links
Synced at

Tue, 30 Apr 2024 12:54:06 GMT

Languages