home.social

Search

41 results for “jugglerchris”

  1. I've released #html2text 0.7.0, a #RustLang crate for converting HTML into text for the terminal.

    crates.io/crates/html2text

    The main new feature is some CSS support (behind a feature flag). It's minimal, but enough to handle the Advent of Code calendar. I expect to fill in more CSS cases in future (PRs or issues welcome), up to a point - definitely not aiming for a full browser styling engine here.

    github.com/jugglerchris/rust-h

  2. I've released #html2text 0.7.0, a #RustLang crate for converting HTML into text for the terminal.

    crates.io/crates/html2text

    The main new feature is some CSS support (behind a feature flag). It's minimal, but enough to handle the Advent of Code calendar. I expect to fill in more CSS cases in future (PRs or issues welcome), up to a point - definitely not aiming for a full browser styling engine here.

    github.com/jugglerchris/rust-h

  3. I've released 0.7.0, a crate for converting HTML into text for the terminal.

    crates.io/crates/html2text

    The main new feature is some CSS support (behind a feature flag). It's minimal, but enough to handle the Advent of Code calendar. I expect to fill in more CSS cases in future (PRs or issues welcome), up to a point - definitely not aiming for a full browser styling engine here.

    github.com/jugglerchris/rust-h

  4. I've released #html2text 0.7.0, a #RustLang crate for converting HTML into text for the terminal.

    crates.io/crates/html2text

    The main new feature is some CSS support (behind a feature flag). It's minimal, but enough to handle the Advent of Code calendar. I expect to fill in more CSS cases in future (PRs or issues welcome), up to a point - definitely not aiming for a full browser styling engine here.

    github.com/jugglerchris/rust-h

  5. I've released #html2text 0.7.0, a #RustLang crate for converting HTML into text for the terminal.

    crates.io/crates/html2text

    The main new feature is some CSS support (behind a feature flag). It's minimal, but enough to handle the Advent of Code calendar. I expect to fill in more CSS cases in future (PRs or issues welcome), up to a point - definitely not aiming for a full browser styling engine here.

    github.com/jugglerchris/rust-h

  6. I've just published #html2text 0.11.0. Mainly a few bugfixes, but I've also had to bump the MSRV to 1.63 due to some dependencies. That's the version on Debian stable, so that seems like a reasonable point.

    crates.io/crates/html2text

    I have given up on running the tests in CI on the minimum supported rust version, though - it didn't seem worth adding workarounds to pin dependencies of dev-dependencies to old versions supporting 1.63.

  7. I've just published #html2text 0.11.0. Mainly a few bugfixes, but I've also had to bump the MSRV to 1.63 due to some dependencies. That's the version on Debian stable, so that seems like a reasonable point.

    crates.io/crates/html2text

    I have given up on running the tests in CI on the minimum supported rust version, though - it didn't seem worth adding workarounds to pin dependencies of dev-dependencies to old versions supporting 1.63.

  8. I've just published 0.11.0. Mainly a few bugfixes, but I've also had to bump the MSRV to 1.63 due to some dependencies. That's the version on Debian stable, so that seems like a reasonable point.

    crates.io/crates/html2text

    I have given up on running the tests in CI on the minimum supported rust version, though - it didn't seem worth adding workarounds to pin dependencies of dev-dependencies to old versions supporting 1.63.

  9. I've just published #html2text 0.11.0. Mainly a few bugfixes, but I've also had to bump the MSRV to 1.63 due to some dependencies. That's the version on Debian stable, so that seems like a reasonable point.

    crates.io/crates/html2text

    I have given up on running the tests in CI on the minimum supported rust version, though - it didn't seem worth adding workarounds to pin dependencies of dev-dependencies to old versions supporting 1.63.

  10. I've just published #html2text 0.11.0. Mainly a few bugfixes, but I've also had to bump the MSRV to 1.63 due to some dependencies. That's the version on Debian stable, so that seems like a reasonable point.

    crates.io/crates/html2text

    I have given up on running the tests in CI on the minimum supported rust version, though - it didn't seem worth adding workarounds to pin dependencies of dev-dependencies to old versions supporting 1.63.

  11. ...quickly followed by #html2text 0.10.1 to fix another bug.

  12. ...quickly followed by #html2text 0.10.1 to fix another bug.

  13. ...quickly followed by 0.10.1 to fix another bug.

  14. ...quickly followed by #html2text 0.10.1 to fix another bug.

  15. ...quickly followed by #html2text 0.10.1 to fix another bug.

  16. I just released #html2text 0.10.0 (my #RustLang crate to convert HTML into plain (or not) text suitable for display in a terminal.
    This release adds some more CSS support including background-color and inline style attributes, and fixes some annoying duplicated empty lines, mostly when there are nested and mostly empty tables.
    Things will slow down again for a bit now!

  17. I just released #html2text 0.10.0 (my #RustLang crate to convert HTML into plain (or not) text suitable for display in a terminal.
    This release adds some more CSS support including background-color and inline style attributes, and fixes some annoying duplicated empty lines, mostly when there are nested and mostly empty tables.
    Things will slow down again for a bit now!

  18. I just released 0.10.0 (my crate to convert HTML into plain (or not) text suitable for display in a terminal.
    This release adds some more CSS support including background-color and inline style attributes, and fixes some annoying duplicated empty lines, mostly when there are nested and mostly empty tables.
    Things will slow down again for a bit now!

  19. I just released #html2text 0.10.0 (my #RustLang crate to convert HTML into plain (or not) text suitable for display in a terminal.
    This release adds some more CSS support including background-color and inline style attributes, and fixes some annoying duplicated empty lines, mostly when there are nested and mostly empty tables.
    Things will slow down again for a bit now!

  20. I just released #html2text 0.10.0 (my #RustLang crate to convert HTML into plain (or not) text suitable for display in a terminal.
    This release adds some more CSS support including background-color and inline style attributes, and fixes some annoying duplicated empty lines, mostly when there are nested and mostly empty tables.
    Things will slow down again for a bit now!

  21. That's better. I've released #html2text 0.7.1, adding a bit of extra CSS support, notably:
    * recognise display: none
    * Config::add_css(), which allows adding new CSS rules to apply.

    My aoc-cli PR now uses `.add_css(".lavafall: { display: none }")` to work around the bad output.

  22. That's better. I've released #html2text 0.7.1, adding a bit of extra CSS support, notably:
    * recognise display: none
    * Config::add_css(), which allows adding new CSS rules to apply.

    My aoc-cli PR now uses `.add_css(".lavafall: { display: none }")` to work around the bad output.

  23. That's better. I've released 0.7.1, adding a bit of extra CSS support, notably:
    * recognise display: none
    * Config::add_css(), which allows adding new CSS rules to apply.

    My aoc-cli PR now uses `.add_css(".lavafall: { display: none }")` to work around the bad output.

  24. That's better. I've released #html2text 0.7.1, adding a bit of extra CSS support, notably:
    * recognise display: none
    * Config::add_css(), which allows adding new CSS rules to apply.

    My aoc-cli PR now uses `.add_css(".lavafall: { display: none }")` to work around the bad output.

  25. That's better. I've released #html2text 0.7.1, adding a bit of extra CSS support, notably:
    * recognise display: none
    * Config::add_css(), which allows adding new CSS rules to apply.

    My aoc-cli PR now uses `.add_css(".lavafall: { display: none }")` to work around the bad output.

  26. Well that's annoying. Having added CSS colours to #html2text just so that the #AdventOfCode calendar looks good, it's changed so that it doesn't look so good anymore...

  27. Well that's annoying. Having added CSS colours to #html2text just so that the #AdventOfCode calendar looks good, it's changed so that it doesn't look so good anymore...

  28. Well that's annoying. Having added CSS colours to just so that the calendar looks good, it's changed so that it doesn't look so good anymore...

  29. Well that's annoying. Having added CSS colours to #html2text just so that the #AdventOfCode calendar looks good, it's changed so that it doesn't look so good anymore...

  30. Well that's annoying. Having added CSS colours to #html2text just so that the #AdventOfCode calendar looks good, it's changed so that it doesn't look so good anymore...