Style architecture.md with a Jekyll layout + prose CSS#15
Merged
Conversation
The architecture page was being rendered by Jekyll as raw HTML body —
no head/header/footer, no stylesheet link, no typography styling. Add:
- docs/_layouts/default.html: site chrome + <link rel=stylesheet> + a
<main><article class=prose>{{ content }}</article> wrapper. Same
header/footer as the splash page, plus a per-page <title>.
- Front matter on docs/architecture.md so it picks up the layout.
- A .prose block in styles.css with markdown typography that matches
the dark theme: heading scale + section dividers, prose link
underline, code + pre styles (rouge-friendly), tables, blockquote,
hr, lists, responsive table scroll.
index.html is a complete document and keeps rendering as-is — only
markdown pages opt into the layout via front matter.
rodrigobnogueira
added a commit
that referenced
this pull request
May 25, 2026
Style architecture.md with a Jekyll layout + prose CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
https://nest-native.dev/reference-app/architecture.htmlwas rendering as a raw markdown body with no<html>/<head>, no stylesheet link, and no typography. This PR adds a Jekyll layout + prose styling so it matches the splash page.Changes
docs/_layouts/default.html— minimal site chrome (header + footer mirroringdocs/index.html),<link rel="stylesheet" href="…/styles.css">,<main><article class="prose">{{ content }}</article>. Per-page<title>falls back to the site title. Usesrelative_urlso the page works under the/reference-app/baseurl.docs/architecture.md— adds front matter (layout: default,title,description) so Jekyll wraps it in the layout.docs/styles.css— appends a.proseblock (~180 lines) covering the markdown surface area in this app: heading scale + section dividers, link underline, inlinecode,<pre>+ rouge-wrapped code blocks, tables (with hover + responsive horizontal scroll), blockquotes,<hr>, lists with accent markers.docs/index.htmlstays a complete document with no front matter — Jekyll passes it through unchanged.Modules Touched
Public Surface (libraries)
Security Review
Dependency Review
Migrations
Validation
npm run ciunaffected (docs-only).Release Notes
nest-native.dev/reference-app/architecture.html.