This file exists to prove the pipeline works and to serve as a copy-paste
reference. Delete it — along with content/projects/example-project.mdx and
public/images/posts/example-post/ — once you have real content.
The authoring reference is HowToEdit.mdx at the repo root.
Text
Regular prose with bold, italic, inline code, strikethrough and a
link to another page on this site, plus one
to somewhere else that opens in a new
tab.
A blockquote, useful for pulling out a quotation or a caveat.
- A bullet
- Another bullet
- Nested one level
- A numbered step
- The one after it
Callouts
Images
A plain markdown image. It is optimised, lazy-loaded, and spans the full width:
The same thing with a caption:

Embeds
A YouTube video:
A Power BI report would go in like this — uncomment once you have a public report URL:
<PowerBIEmbed src="https://app.powerbi.com/view?r=YOUR_REPORT_ID" />And anything else that offers an iframe:
<Embed src="https://example.com/embed" title="What the embed shows" />Code
select
customer_id,
sum(amount) as total_spend
from orders
where order_date >= '2026-01-01'
group by customer_id
order by total_spend desc;import pandas as pd
orders = pd.read_csv("orders.csv", parse_dates=["order_date"])
top = (
orders.loc[orders["order_date"] >= "2026-01-01"]
.groupby("customer_id")["amount"]
.sum()
.sort_values(ascending=False)
)Tables
| Function | Use it for | Still worth learning |
|---|---|---|
VLOOKUP | Legacy files, leftmost key | Only to read others' work |
INDEX/MATCH | Lookups in any direction | Sometimes |
XLOOKUP | Everything new | Yes |
Downloads
Small files can sit in the repo:
Anything large belongs on OneDrive or Drive, linked as a normal external link.
The MDX gotcha worth remembering
Braces and angle brackets are special in prose. Wrap them in backticks:
{=SUM(A1:A10)} and revenue < budget are both fine this way, and would break
the build without it.
