添加复制和下载按钮,统计字数功能

This commit is contained in:
2025-10-12 19:32:52 +08:00
parent 34439f5cab
commit f8bd6388d7
77 changed files with 6374 additions and 599 deletions

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
version: '3.8'
services:
web:
build: .
container_name: markdown-to-web
ports:
- "5173:80"
volumes:
- /shumengya/docker/storage/markdown2web/dist:/usr/share/nginx/html
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:80"]
interval: 30s
timeout: 10s
retries: 3