vimwiki_macros 0.1.0-alpha.4

Macro library that provides macros to generate vimwiki language at compile time.
Documentation
.PHONY: help build clean test

help: ## Display help information
	@printf 'usage: make [target] ...\n\ntargets:\n'
	@egrep '^(.+)\:\ .*##\ (.+)' ${MAKEFILE_LIST} | sed 's/:.*##/#/' | column -t -c 2 -s '#'

build: ## Build debug version
	@cargo build

clean: ## Cleans build resources
	@cargo clean

test: ## Run all tests
	@cargo test