Initial commit

This commit is contained in:
alex wennerberg
2021-12-19 08:55:34 -08:00
commit 06549d688c
4 changed files with 15 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/target

8
Cargo.toml Normal file
View File

@@ -0,0 +1,8 @@
[package]
name = "html2text-lite"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
README.md Normal file
View File

@@ -0,0 +1,3 @@
# HTML to text
Like html2text, but doesn't require a full browser-grade html parser

3
src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}