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
frontend/Makefile Normal file
View File

@@ -0,0 +1,19 @@
.PHONY: test
test:
npm test
.PHONY: build
build:
npm run build
.PHONY: start
start:
npm start
.PHONY: clean
clean:
npm run clean