Skip to content

Commit 4fd3386

Browse files
committed
hard wraps
Signed-off-by: bwplotka <bwplotka@gmail.com>
1 parent 13f831a commit 4fd3386

File tree

2 files changed

+24
-60
lines changed

2 files changed

+24
-60
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ help: ## Displays help.
1313
fmt: ## Format docs.
1414
fmt: $(MDOX)
1515
@echo "Formatting markdown files..."
16-
@$(MDOX) fmt --soft-wraps --links.validate $(MD_FILES_TO_FORMAT)
16+
@$(MDOX) fmt --links.validate $(MD_FILES_TO_FORMAT)
1717

1818
.PHONY: check
1919
check: ## Checks if doc is formatter and links are correct (don't check external links).
2020
check: $(MDOX)
2121
@echo "Checking markdown file formatting and basic links..."
22-
@$(MDOX) fmt --soft-wraps --links.validate --links.validate.config-file=./.mdox.validator.yaml --check $(MD_FILES_TO_FORMAT) || (echo "🔥 Validation failed, files not formatted or links are broken. Try running 'make fmt' to fix formatting!" && exit 1)
22+
@$(MDOX) fmt --links.validate --links.validate.config-file=./.mdox.validator.yaml --check $(MD_FILES_TO_FORMAT) || (echo "🔥 Validation failed, files not formatted or links are broken. Try running 'make fmt' to fix formatting!" && exit 1)
2323
@echo "✅ Markdown files correctly formatted"

0 commit comments

Comments
 (0)