[package]
edition = "2024"
rust-version = "1.91.1"
name = "tpnote-html2md"
version = "0.3.6"
authors = [
"Oleg `Kanedias` Chernovskiy <kanedias@house-of-maker.online>",
"Jens Getreu <getreu@web.de>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTML to Markdown converter library"
readme = "README.md"
keywords = [
"html",
"markdown",
"converter",
]
categories = [
"development-tools",
"parsing",
"parser-implementations",
]
license = "MIT"
repository = "https://gitlab.com/getreu/tp-note"
resolver = "2"
[lib]
name = "html2md"
path = "src/lib.rs"
[[bin]]
name = "html2md"
path = "src/bin/html2md.rs"
[[test]]
name = "iframes"
path = "tests/iframes.rs"
[[test]]
name = "images"
path = "tests/images.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "lists"
path = "tests/lists.rs"
[[test]]
name = "quotes"
path = "tests/quotes.rs"
[[test]]
name = "styles"
path = "tests/styles.rs"
[[test]]
name = "tables"
path = "tests/tables.rs"
[[test]]
name = "unit"
path = "tests/unit.rs"
[dependencies.html5ever]
version = "0.39.0"
[dependencies.markup5ever]
version = "0.39.0"
[dependencies.percent-encoding]
version = "2.3.2"
[dependencies.regex]
version = "1.12.3"
[dependencies.tendril]
version = "0.5"
[dev-dependencies.indoc]
version = "2.0.7"
[target.'cfg(target_os="android")'.dependencies.jni]
version = "0.22.4"
default-features = false