commit 06549d688cea183d3c4918aafe2219ac442a18a2
Author: alex wennerberg <alex@alexwennerberg.com>
Date: Sun, 19 Dec 2021 08:55:34 -0800
Initial commit
Diffstat:
4 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -0,0 +1 @@
+/target
diff --git a/Cargo.toml b/Cargo.toml
@@ -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]
diff --git a/README.md b/README.md
@@ -0,0 +1,3 @@
+# HTML to text
+
+Like html2text, but doesn't require a full browser-grade html parser
diff --git a/src/main.rs b/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}