From dbb10653bbeb4c40552b51d1363d8bad03fb0260 Mon Sep 17 00:00:00 2001 From: kud1ing Date: Sat, 18 Oct 2014 16:07:46 +0200 Subject: [PATCH] servo/html5ever --- README.md | 2 ++ UNSTABLE.md | 1 + generate_markdown_files.py | 16 ++++++++++++++++ 3 files changed, 19 insertions(+) diff --git a/README.md b/README.md index fb7f08b..65dab66 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,8 @@ Only projects that are stable and useful to users are added. Projects that do no * [lifthrasiir/rust-encoding](https://github.com/lifthrasiir/rust-encoding) — [](https://travis-ci.org/lifthrasiir/rust-encoding) * CSV * [BurntSushi/rust-csv](https://github.com/BurntSushi/rust-csv) — [](https://travis-ci.org/BurntSushi/rust-csv) +* HTML + * [servo/html5ever](https://github.com/servo/html5ever) — High-performance browser-grade HTML5 parser [](https://travis-ci.org/servo/html5ever) * MsgPck * [mneumann/rust-msgpack](https://github.com/mneumann/rust-msgpack) — [](https://travis-ci.org/mneumann/rust-msgpack) * ProtocolBuffers diff --git a/UNSTABLE.md b/UNSTABLE.md index 6296adf..099be21 100644 --- a/UNSTABLE.md +++ b/UNSTABLE.md @@ -59,6 +59,7 @@ A list of awesome but unstable/experimental Rust projects which some day hopeful * Character Encoding * CSV * [Geal/rust-csv](https://github.com/Geal/rust-csv) — [](https://travis-ci.org/Geal/rust-csv) +* HTML * MsgPck * ProtocolBuffers * TOML diff --git a/generate_markdown_files.py b/generate_markdown_files.py index 36d63ce..45e914d 100644 --- a/generate_markdown_files.py +++ b/generate_markdown_files.py @@ -9,8 +9,22 @@ def md_link(name, url): "Returns a web link in Markdown format" return '[%s](%s)' % (name, url) +""" + '': { + "url": '', + "descr": md_link('', '') + ' bindings', + "travis_url": '', + "travis_badge": '', + }, +""" DATA = \ { + 'servo/html5ever': { + "url": 'https://github.com/servo/html5ever', + "descr": 'High-performance browser-grade HTML5 parser', + "travis_url": 'https://travis-ci.org/servo/html5ever', + "travis_badge": 'https://travis-ci.org/servo/html5ever.svg?branch=master', + }, "alexcrichton/ssh2-rs": { "url": "https://github.com/alexcrichton/ssh2-rs", "descr": md_link('libssh2', 'http://www.libssh2.org/') + " bindings", @@ -577,6 +591,8 @@ entry( ' * ', 'lifthrasiir/rust-encoding', rows_stable, rows_unstable ) add( '* CSV', rows_stable, rows_unstable ) entry( ' * ', 'BurntSushi/rust-csv', rows_stable, rows_unstable ) entry( ' * ', 'Geal/rust-csv', rows_stable, rows_unstable ) +add( '* HTML', rows_stable, rows_unstable ) +entry( ' * ', 'servo/html5ever', rows_stable, rows_unstable ) add( '* MsgPck', rows_stable, rows_unstable ) entry( ' * ', 'mneumann/rust-msgpack', rows_stable, rows_unstable ) add( '* ProtocolBuffers', rows_stable, rows_unstable )