Seeded showcase article for the frontend Markdown feature set.
This English page was generated from 简体中文. Review before treating it as canonical.
This seeded article is a single place to demonstrate the blog frontend's current Markdown capabilities: citations like [1], article cross-references, table captions, callouts, code fences, and rich text formatting.
The examples below show the built-in GitHub-style callout types plus the fallback rendering for a custom label.
The article body can mix strong text, emphasis, inline code, and ordinary links such as Payload CMS docs.
Once a publishing system supports references, labeled figures, captioned tables, and structured code blocks, it starts behaving more like technical publishing than plain blogging.
The [Figure 1] and [Table 1] references below demonstrate article anchors for labeled images and captioned tables.
| Feature | Status |
|---|---|
| Citation bibliography | Native |
| Figure references | Native |
| Table captions | Native |
| Rendered markdown components | Native |
| TSX fenced blocks | Native |
The examples below use a JSX-like surface, but they do not execute arbitrary React code. They are mapped onto a small whitelist of built-in frontend components.
The body still flows through the Markdown parser, so ordinary paragraphs, emphasis, and links keep working inside the component.
The fenced tsx block below should render as a labeled code block rather than an executed component.
tsxexport function NoticeCard({ title }: { title: string }) {
return (
<section className="notice-card">
<h3>{title}</h3>
<p>This remains a code example rather than executable JSX.</p>
</section>
)
}
If you need a single article that exercises headings, citations, labeled figures, captioned tables, callouts, rich text, and code fences, this is the seeded system showcase.
Tags
References
Jane Smith, John Doe (2024). Designing Blogs that Respect References.
Journal of Digital Writing 12(2), 10-32