Hello, Lazy Reader哈囉,Lazy Reader

A sample article that uses every block type the reader must render.一篇用到每一種 block 的範例文章,用來檢查閱讀器的渲染。

原文:example.com快照

This article exists to check the rendering of each block type. It has paragraphs, inline formatting, lists, a quote, code, an image, a table, and a footnote. The source is a plain Markdown file with YAML frontmatter.

這篇文章用來檢查每一種 block 的渲染結果。它包含段落、行內格式、列表、引用、 程式碼、圖片、表格與註腳。來源是一個帶 YAML frontmatter 的純 Markdown 檔。

Inline formatting: bold, italic, code, strikethrough, and a link to the Fumapress documentation. Here is a footnote reference.1

行內格式:粗體斜體程式碼刪除線,以及一個 指向 Fumapress 文件的連結。這裡有一個註腳參照。1

Lists

列表

An unordered list:

  • The first item.
  • The second item, with a nested list:
    • A nested item.
    • Another nested item.
  • The third item.

一個無序列表:

  • 第一項。
  • 第二項,帶一個巢狀列表:
    • 巢狀項目。
    • 另一個巢狀項目。
  • 第三項。

An ordered list:

  1. Fetch the article.
  2. Translate each paragraph.
  3. Commit the result.

一個有序列表:

  1. 抓取文章。
  2. 逐段翻譯。
  3. 提交結果。

Quote

引用

Any sufficiently advanced technology is indistinguishable from magic.

Arthur C. Clarke

任何足夠先進的科技,皆與魔法無異。

Arthur C. Clarke

Code

程式碼

An inline command is bun run build. A fenced block with a language:

行內指令如 bun run build。帶語言標記的程式碼區塊:

press.config.tsx
import { defineConfig } from "fumapress";

export default defineConfig({
  site: { name: "Lazy Reader" },
});

A fenced block without a language:

沒有語言標記的程式碼區塊:

plain text
  with indentation

Image

圖片

A blue rectangle with a light circle and a light square

Table

表格

BlockMarkdown syntaxTranslated?
Paragraphplain textyes
Codetriple backticksno
Image![alt](./file.png)alt text only
Tablepipes and dashescell by cell
BlockMarkdown 語法翻譯嗎
段落純文字
程式碼三個反引號不翻
圖片![alt](./file.png)只翻替代文字
表格直線與橫線逐格翻

Heading levels

標題層級

Level three

第三層

Text under a level three heading.

第三層標題下的文字。

Level four

第四層

Text under a level four heading.

第四層標題下的文字。

  1. This is the footnote text. It appears at the end of the article.

    這是註腳內容,會出現在文章末尾。