skip to content
Posts · February 2026

Writing with MDX


Everything from Writing with markdown still applies. The frontmatter schema is shared, the layout is identical, OG images and reading progress all work the same. MDX only adds: imports at the top, JS expressions in { ... }, and the ability to render components inline.

Inline expressions

Today’s year is 2026. This post is by Győrgyike Noémi Csilla, who set the site title to . None of that is hard-coded into the file — it’s read at build time from src/site.config.ts, so renaming yourself in one place updates every MDX post that references you.

Reading from data files

There are currently 11 entries in src/data/showcase.ts:

  • Az etnikum nem választ szét, de az utálat igen
  • Nem is hitted volna, hogy ennyire jó a kőleves
  • Mintha Isten megérintene minden embert – Light of Night Kolozsváron
  • KindaCast: a közös szerelemprojekt
  • Háború, válság, pénzügyi frontvonalak, avagy, miért nincsen pénzünk?
  • Mit mesél a karácsonyfa?
  • Krampusszal a föld körül – karácsony a nagyvilágban
  • Minden rendben van
  • Spórol a kormány – ennek mi (is) megisszuk a levét
  • Szorongás ellen: sport, kapcsolatok, beszélgetések
  • Bemutatkozások terepe – startol a FRAME fesztivál

Add or remove an entry in that file and the list above updates on the next build.

When to reach for MDX

Most posts don’t need it — plain .md is shorter, easier to edit, and lints cleanly with prettier. Use .mdx when:

  • A post references data that lives elsewhere in the repo (config, a data file, a JSON dump).
  • You want to drop in a small interactive widget or chart without leaving the prose.
  • You’re documenting a component and want to render it next to its description.

For everything else, stick with markdown.