Frontmatter
| id | 7878 |
| title | Add Markdown and YAML to Highlight.js build configuration |
| state | Closed |
| labels | enhancementai |
| assignees | tobiu |
| createdAt | Nov 23, 2025, 12:56 PM |
| updatedAt | Nov 23, 2025, 12:57 PM |
| githubUrl | https://github.com/neomjs/neo/issues/7878 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Nov 23, 2025, 12:57 PM |
The
ContentComponentin the Portal app (apps/portal/view/learn/ContentComponent.mjs) has been updated to supportmarkdownandyamlfor syntax highlighting in readonly code blocks.However, the custom Highlight.js bundle generation script (
buildScripts/buildHighlightJs.mjs) currently only includes:['bash', 'css', 'javascript', 'json', 'scss', 'xml'].This ticket is to update
buildScripts/buildHighlightJs.mjsto include'markdown'and'yaml'in thelanguagesarray, ensuring these languages are included in the next build of the highlighting library.