bard 1.3.0

Creates PDF and HTML songbooks out of easy-to-write Markdown sources.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.PHONY: check
check:
	cargo fmt -- --check
	cargo clippy
# Minimum required Rust is 1.46 due to #[track_caller]
	cargo +1.46 check --tests

.PHONY: release
release: target/release/bard

target/release/bard:
	cargo build --release

.PHONY: examples
examples: release
	cargo test
	cd default && cargo run -- make
	cd example && cargo run -- make