Skip to content

Commit

Permalink
initial commit for v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sentinel1909 committed Jul 31, 2023
0 parents commit 5654b7d
Show file tree
Hide file tree
Showing 6 changed files with 450 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# gitignore for the markdown-html-rs crate

# Visual Studio Code settings
.vscode

# Target directory
/target
366 changes: 366 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[package]
name = "markdown-html-rs"
version = "1.0.0"
edition = "2021"
description = "A simple command line markdown to HTML converter"
readme = "README.md"
authors = [ "Jeffery D. Mitchell", "<sentinel1909@jeff-mitchell.dev>"]
repository = "https://github.com/sentinel1909/markdown-html-rs"
license = "MIT"
keywords = ["converter, markdown, HTML"]
categories = [ "CLI" ]
publish = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4.3.19", features = [ "derive"] }
pulldown-cmark = { version = "0.9.3", default-features = false}
thiserror = "1.0"
Loading

0 comments on commit 5654b7d

Please sign in to comment.