help: ## Display this help screen @grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m %s\n", $$1, $$2}' doc: ## Generate documentation @cargo rustdoc --lib -- --html-in-header docs/katex-header.html -D warnings doc-internal: ## Generate documentation with private items @cargo rustdoc --lib -- --document-private-items -D warnings doc-local: ## Open local documentation @RUSTDOCFLAGS="--html-in-header docs/katex-header.html" cargo doc --no-deps --open .PHONY: help doc doc-internal