7 Commits

Author SHA1 Message Date
d6a8b960d9 refactor: replace inline path utilities with path package
basename, dirname, and slugFromFilename now delegate to the path package.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 14:58:18 -05:00
42e9676956 refactor: replace inline frontmatter code with frontmatter package
Removed ~60 lines of inline frontmatter parsing (FMState, Frontmatter,
ParseResult types, fmFoldLine, parseFrontmatter, and accessor functions).
Now uses the frontmatter package via import.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 14:54:45 -05:00
e835b952a5 chore: update markdown dependency path after reorganization
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 12:45:48 -05:00
6e0c685831 refactor: replace inline markdown with markdown package dependency
Remove 606 lines of hand-rolled markdown parsing from main.lux and the
unused markdown.lux split file. Replace with `import markdown` using the
new markdown package (path dependency at ../markdown).

This fixes the heading-in-list rendering bug where `- ### Title` was
showing literal `### ` text. Now renders as `<li><h3>Title</h3></li>`.
Also adds strikethrough support (~~text~~).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 10:21:46 -05:00
ec124768dc docs: add README and site review with improvement brainstorm
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 09:50:15 -05:00
6b7ac4f09b fix: use relative paths now that blu-site is its own repo
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 08:13:44 -05:00
0b0cf2f8a2 feat: add blu-site static site generator and fix language issues
Build a complete static site generator in Lux that faithfully clones
blu.cx (elmstatic). Generates 14 post pages, section indexes, tag pages,
and a home page with snippets grid from markdown content.

ISSUES.md documents 15 Lux language limitations found during the project.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 07:57:45 -05:00