5 Commits

Author SHA1 Message Date
e6c8c77805 refactor: use ssg package and sync content from elmstatic
Replace ~200 lines of inline SSG logic (types, accessors, parsing,
sorting, tags, file I/O) with imports from the new ssg package.
Sync updated Lyceum article, images, snippet, and CSS fixes
(h3/h4 font-bold, ol list-decimal, blockquote/li spacing) from
blu-elmstatic.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-24 22:04:17 -05:00
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