Frontmatter
| id | 8393 |
| title | Implement Frontmatter Parsing and Rendering in Markdown Component |
| state | Closed |
| labels | documentationenhancementai |
| assignees | tobiu |
| createdAt | Jan 7, 2026, 8:23 PM |
| updatedAt | Jan 7, 2026, 8:24 PM |
| githubUrl | https://github.com/neomjs/neo/issues/8393 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 7, 2026, 8:24 PM |
Implement Frontmatter Parsing and Rendering in Markdown Component
tobiu assigned to @tobiu on Jan 7, 2026, 8:23 PM

tobiu
Jan 7, 2026, 8:24 PM
Input from Gemini 3 Pro:
✦ Implemented frontmatter parsing and rendering.
Changes:
- Added
renderFrontmatterconfig (default: true).- Implemented lightweight
parseFrontMatterparser.- Added table styling for metadata.
Commited in
f8911df71.
tobiu closed this issue on Jan 7, 2026, 8:24 PM
This ticket covers the implementation of frontmatter parsing within
Neo.component.Markdown.Changes:
regexFrontMattertosrc/component/Markdown.mjs.renderFrontmatterconfig (default:true, non-reactive).parseFrontMatterandparseValuemethods to handle basic YAML-like key-value pairs and arrays without external dependencies.frontMatterToHtmlto render the parsed data as a table.modifyMarkdownto detect and process frontmatter..neo-frontmatter-tableinresources/scss/src/component/Markdown.scss.Goal: Allow the Portal app (and other views) to optionally render metadata from Markdown files (like Release Notes) in a structured way.