altairwei / gumbo-query

Just used for WizNotePlus dependency

Home Page:https://github.com/altairwei/WizNotePlus

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gumbo-query

A C++ library that provides jQuery-like selectors for Google's Gumbo-Parser.

Selector engine is an implementation based on cascadia.

Installation

2 ways:

Through homebrew (Recommended):

$ brew install gumbo-query

Through git:

$ git clone https://github.com/Falven/gumbo-query
$ cd gumbo-query/build && cmake .. && make && make test
$ sudo make install

And to generate Doxygen documentation:

$ make doc

Usage

#include <iostream>
#include <string>
#include "Document.h"
#include "Node.h"

int main(int argc, char * argv[])
{
  std::string page("<h1><a>some link</a></h1>");
  CDocument doc;
  doc.parse(page.c_str());

  CSelection c = doc.find("h1 a");
  std::cout << c.nodeAt(0).text() << std::endl; // some link
  return 0;
}

About

Just used for WizNotePlus dependency

https://github.com/altairwei/WizNotePlus

License:MIT License


Languages

Language:C++ 46.8%Language:HTML 18.4%Language:CMake 17.5%Language:Makefile 14.4%Language:Shell 2.3%Language:Ruby 0.5%