بنقرة واحدة
write-article
// Creates or updates blog articles for the Oinkoin website. Use when the user wants to write a blog post, publish a release article, or add content to the website blog.
// Creates or updates blog articles for the Oinkoin website. Use when the user wants to write a blog post, publish a release article, or add content to the website blog.
| name | write-article |
| description | Creates or updates blog articles for the Oinkoin website. Use when the user wants to write a blog post, publish a release article, or add content to the website blog. |
| argument-hint | [topic or release-version] |
Write a blog article for the Oinkoin website.
/write-article [topic]
/write-article 2.1.0
website/src/content/blog/ as Markdown files.linux-beta.md → /blog/linux-beta).my-new-feature.md.Every article must have frontmatter between --- delimiters:
---
title: 'Article Title' # required — page title & blog listing
description: 'Short summary' # required — shown in listing & meta tags
pubDate: 2026-05-03 # required — ISO date (YYYY-MM-DD)
updatedDate: 2026-05-10 # optional — if article is revised
heroImage: '/path/image.png' # optional — not currently used in template
---
## (h2) for top-level sections. The article title becomes the page <h1> automatically.### (h3) for sub-sections under an ##.1.15rem font size.**double asterisks**.#2563eb) markers.[text](url).https://play.google.com/store/apps/details?id=com.emavgl.piggybankhttps://github.com/emavgl/oinkoin/releaseshttps://github.com/emavgl/oinkoin/issuesUse --- on its own line to insert a horizontal rule. This is typically used before the footer/download links section. It renders with 2.5em vertical margin.
Wrap images in a centered div to match existing posts:
<div style="text-align:center; margin: 2em 0;">
<img src="/path/to/image.png" alt="Description" style="width:96px; height:96px; display:inline-block;" />
</div>
Place images in website/public/.
End articles with a separator, then a heading, then download links:
---
## Upgrade Now
Download version **X.Y.Z** from [Google Play](https://play.google.com/store/apps/details?id=com.emavgl.piggybank) or grab the APK directly from our [GitHub releases page](https://github.com/emavgl/oinkoin/releases/tag/X.Y.Z).
Have questions or feedback? Open an issue or start a discussion on [GitHub](https://github.com/emavgl/oinkoin).