Files
go-cv/PLAN.md
Bryan Joshua Pedini 1d47c5a930 feat: integrate HTML template engine with theme selection
- Add theme configuration to WebServer struct
- Create default theme with base.html layout template
- Update content.go to apply theme templates to generated HTML
- Output is now full HTML documents with styling

Co-Authored-By: Claude (glm-5) <noreply@anthropic.com>
2026-03-05 02:17:12 +01:00

38 lines
1.8 KiB
Markdown

# Implementation Plan
## Project Constraints
- [x] Pure Go binary (no external system dependencies for PDF).
- [x] Config via `config.yaml` only (no CLI flags).
- [x] Hardcoded paths: `./content` (input), `./output` (build artifacts).
- [x] Modes: `gocv` (CLI), `gocv serve` (Daemon).
- [ ] Commit at every loop iteration. Do not push. Do not tag.
## Current Status
- [x] Project backbone exists (HTTP server, graceful shutdown, config reading).
- [x] Markdown parsing logic implemented (using goldmark).
- [x] HTML Template engine integrated (Hugo-like theme selection).
- [ ] PDF Generation implemented (Pure Go library selected and integrated).
- [x] CLI Mode (`gocv`) generates static files to `./output` and exits.
- [ ] Serve Mode (`gocv serve`) hosts HTML and serves PDF on demand.
- [ ] File Watcher implemented for live reload in Serve Mode.
- [ ] Dockerfile created for multi-stage build.
## Active Task
- [x] Analyze existing backbone code and integrate Markdown parsing.
- [x] Integrate HTML template engine with theme selection.
- [ ] Implement Serve Mode with file watching for live reload.
## Known Issues / Blockers
- [ ] Identify best Pure Go PDF library that supports HTML/CSS (or define CSS subset).
- [x] Current output is raw HTML fragments without full HTML document structure.
## Completed Log
- [x] Initial project structure defined.
- [x] Basic HTTP server and signal handling implemented.
- [x] CLI mode vs Serve mode distinction implemented (checks os.Args[1] for "serve").
- [x] Content reading from `./content` directory implemented.
- [x] Markdown to HTML conversion using goldmark library.
- [x] Theme system with templates/themes/{theme}/base.html structure.
- [x] Config.yaml theme setting (defaults to "default").
- [x] Output now generates complete HTML documents with styling.