final tweaks before deploy

This commit is contained in:
Satria 2026-05-29 09:36:12 +07:00
commit a9e4ec8973
6 changed files with 104 additions and 157 deletions

View file

@ -1,11 +1,42 @@
title: Comprehensive Markdown & GFM Syntax Reference
desc: A detailed guide to Markdown and GitHub Flavored Markdown (GFM) syntax, covering text formatting, lists, tables, code blocks, links, and footnotes.
date: 2026-05-27
tags: [markdown, gfm, syntax, reference, guide]
draft: true
^---
## 1. Text Formatting & Structure
<!-- THIS IS A COMMENT -->
This document serves as a comprehensive reference for Markdown and GitHub Flavored Markdown (GFM) syntax. It covers various formatting options, list types, table creation, code block usage, link formatting, and footnote implementation.
The purpose is to test and demonstrate the full range of Markdown features, ensuring that all syntax is correctly rendered and supported in the target environment. This includes both standard Markdown elements and GFM-specific extensions.
_This post was generated by AI for testing purposes_
---
## Images
![Alt text](https://picsum.photos/150)
---
## HTML in Markdown
<details>
<summary>Click to expand HTML content</summary>
<p>This is a block of HTML content embedded within Markdown. It can include any valid HTML elements, such as this <strong>bold text</strong> and this <em>italic text</em>.</p>
<ul>
<li>HTML List Item 1</li>
<li>HTML List Item 2</li>
</ul>
</details>
<iframe src="https://google.com" width="300" height="200"></iframe>
<br>^^ This **shouldn't** render as an iframe but should show the raw HTML code
---
## Text Formatting & Structure
* **Bold:** **This text is bold** or __this is bold__.
* **Italic:** *This text is italic* or _this is italic_.
@ -21,7 +52,7 @@ draft: true
---
## 2. Lists
## Lists
### Unordered (Bulleted)
* Item 1
@ -43,7 +74,15 @@ draft: true
---
## 3. Tables (GFM)
## Links and Autolinks
* **Standard Link:** [Search Engine](https://www.google.com)
* **Link with Tooltip:** [GitHub](https://github.com "Go to GitHub")
* **Autolink (GFM):** https://nixos.org
---
## Tables (GFM)
| Feature | Standard Markdown | GFM Extension | Status |
| :--- | :---: | :---: | ---: |
@ -54,7 +93,7 @@ draft: true
---
## 4. Code Blocks with Syntax Highlighting
## Code Blocks with Syntax Highlighting
```bash
#!/usr/bin/env bash
@ -144,11 +183,3 @@ echo "${GREETING/Hello/Hey}"
echo "${FILE##*/}" # basename
echo "${FILE%/*}" # dirname
```
---
## 5. Links and Autolinks
* **Standard Link:** [Search Engine](https://www.google.com)
* **Link with Tooltip:** [GitHub](https://github.com "Go to GitHub")
* **Autolink (GFM):** https://nixos.org