feat: implement WYSIWYG markdown editor with Go backend and React frontend

This commit is contained in:
2026-02-05 17:14:20 -05:00
parent 42af63fdae
commit 512a9db08f
33 changed files with 24555 additions and 0 deletions

19
backend/Makefile Normal file
View File

@@ -0,0 +1,19 @@
.PHONY: test
test:
go test ./test -v
.PHONY: run
run:
go run ./cmd/backend
.PHONY: build
build:
go build -o markdown-editor ./cmd/backend
.PHONY: clean
clean:
rm -rf markdown-editor