This is the first note. It is written in Markdown and generated automatically by Eleventy.

Writing Notes

Add new notes by creating .md files inside src/content/notes/. Each file needs a front matter block:

---
title: "Your Note Title"
date: 2026-05-01
description: "Optional short description."
---

The notes index at /notes/ will list them automatically, newest first.

Markdown Support

You can use standard Markdown:

Blockquote example.

Embedding a Bilibili Video

Wrap the <iframe> in a <div class="video-embed"> for a responsive 16:9 container:

<div class="video-embed">
  <iframe
    src="https://player.bilibili.com/player.html?bvid=BVxxxxxxxxxx&page=1&high_quality=1&danmaku=0&autoplay=false"
    scrolling="no"
    frameborder="no"
    allowfullscreen="true">
  </iframe>
</div>

Replace BVxxxxxxxxxx with the actual BV ID from the video URL. The &t=80 parameter starts playback at a specific second if needed.