2 Commits
Author SHA1 Message Date
lusk 5ab8fe2ccd Update Cargo.toml 2026-05-28 21:52:53 +02:00
lusk 68b4780181 Update Makefile 2026-05-28 21:52:12 +02:00
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "md-to-html" name = "md-to-html"
version = "0.0.2" version = "0.0.3"
edition = "2021" edition = "2021"
repository = "https://git.stancik.work/lusk/md-to-html" repository = "https://git.stancik.work/lusk/md-to-html"
description = "Markdown to HTML converter" description = "Markdown to HTML converter"
+3 -3
View File
@@ -23,11 +23,11 @@ debug/build: init
messense/rust-musl-cross:x86_64-musl /bin/sh -c "cargo build && chown -R ${SELF_UID}:${SELF_GID} target" messense/rust-musl-cross:x86_64-musl /bin/sh -c "cargo build && chown -R ${SELF_UID}:${SELF_GID} target"
release/install: release/build release/install: release/build
@cp target/x86_64-unknown-linux-musl/release/md_to_html ~/.local/bin/md_to_html @cp target/x86_64-unknown-linux-musl/release/md-to-html ~/.local/bin/md-to-html
debug/install: debug/build debug/install: debug/build
@cp target/x86_64-unknown-linux-musl/debug/md_to_html ~/.local/bin/md_to_html @cp target/x86_64-unknown-linux-musl/debug/md-to-html ~/.local/bin/md-to-html
run: run:
@RUST_LOG=debug md_to_html convert --file test/page.md --to /tmp/test-output.html @RUST_LOG=debug md-to-html convert --file test/page.md --to /tmp/test-output.html
@bat /tmp/test-output.html @bat /tmp/test-output.html