gay sex.
if you link in Markdown it scrolls to the link in the page. you can see this in mdtest.md
This commit is contained in:
145
posts/mdtest.md
Normal file
145
posts/mdtest.md
Normal file
@@ -0,0 +1,145 @@
|
||||
---
|
||||
title: "Markdown Testing"
|
||||
date: "2025-06-17"
|
||||
tags: ["testing"]
|
||||
summary: "Testing Markdown Features"
|
||||
---
|
||||
# Markdown Feature Test
|
||||
|
||||
## Table of Contents
|
||||
- [Headings](#headings)
|
||||
- [Text Formatting](#text-formatting)
|
||||
- [Lists](#lists)
|
||||
- [Links](#links)
|
||||
- [Images](#images)
|
||||
- [Code](#code)
|
||||
- [Blockquotes](#blockquotes)
|
||||
- [Horizontal Rule](#horizontal-rule)
|
||||
- [Tables](#tables)
|
||||
- [Task Lists](#task-lists)
|
||||
- [HTML in Markdown](#html-in-markdown)
|
||||
|
||||
---
|
||||
|
||||
## Headings
|
||||
|
||||
# H1
|
||||
## H2
|
||||
### H3
|
||||
#### H4
|
||||
##### H5
|
||||
###### H6
|
||||
|
||||
---
|
||||
|
||||
## Text Formatting
|
||||
|
||||
- **Bold**
|
||||
- *Italic*
|
||||
- ***Bold and Italic***
|
||||
- ~~Strikethrough~~
|
||||
- <u>Underline (HTML)</u>
|
||||
- ==Highlight (non-standard)==
|
||||
|
||||
---
|
||||
|
||||
## Lists
|
||||
|
||||
### Unordered
|
||||
- Item 1
|
||||
- Subitem 1.1
|
||||
- Subitem 1.1.1
|
||||
- Item 2
|
||||
|
||||
### Ordered
|
||||
1. First item
|
||||
2. Second item
|
||||
1. Subitem
|
||||
2. Subitem
|
||||
3. Third item
|
||||
|
||||
---
|
||||
|
||||
## Links
|
||||
|
||||
- [Inline Link](https://www.example.com)
|
||||
- [Reference Link][example]
|
||||
- <https://www.example.com>
|
||||
|
||||
[example]: https://www.example.com
|
||||
|
||||
---
|
||||
|
||||
## Images
|
||||
|
||||

|
||||
|
||||
---
|
||||
|
||||
## Code
|
||||
|
||||
### Inline Code
|
||||
|
||||
Here is `inline code`.
|
||||
|
||||
### Code Block (fenced)
|
||||
|
||||
```Python
|
||||
|
||||
def hello\_world():
|
||||
print("Hello, world!")
|
||||
|
||||
```
|
||||
|
||||
### Code Block (indented)
|
||||
```Python
|
||||
def indented_example():
|
||||
return True
|
||||
```
|
||||
---
|
||||
|
||||
## Blockquotes
|
||||
|
||||
> This is a blockquote.
|
||||
>
|
||||
> > Nested blockquote.
|
||||
|
||||
---
|
||||
|
||||
## Horizontal Rule
|
||||
|
||||
---
|
||||
|
||||
___
|
||||
|
||||
***
|
||||
|
||||
---
|
||||
|
||||
## Tables
|
||||
|
||||
| Syntax | Description |
|
||||
|--------|-------------|
|
||||
| Header | Title |
|
||||
| Cell | Content |
|
||||
|
||||
---
|
||||
|
||||
## Task Lists
|
||||
|
||||
- [x] Task 1
|
||||
- [ ] Task 2
|
||||
- [x] Subtask
|
||||
- [ ] Subtask
|
||||
|
||||
---
|
||||
|
||||
## HTML in Markdown
|
||||
|
||||
<div style="color: red; font-weight: bold;">
|
||||
This is raw HTML in Markdown.
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
_End of Markdown Feature Test_
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
title: "Read Me . Markdown!"
|
||||
date: "2025-05-17"
|
||||
date: "2025-06-17"
|
||||
tags: ["welcome", "introduction"]
|
||||
summary: "Read Me Please"
|
||||
---
|
||||
@@ -29,7 +29,7 @@ Standard Markdown is supported. HTML with some basic CSS too! External CSS files
|
||||
| engine | Engine to be used for processing templates. Handlebars is the default. |
|
||||
| ext | Extension to be used for destination files. |
|
||||
|
||||
<p style="background-color:grey;color:white;font-style:italic;">If you noticed <span style="color: #5BCEFA; font-weight: bold;">data</span> was blue! This works due to the HTML / CSS / Markdown <span style="font-weight: bold; font-size: 1em; padding: 0.2em 0.4em; border-radius: 4px;"><span style="color: #5BCEFA;">T</span><span style="color: #F5A9B8;">r</span><span style="color: #FFFFFF;">a</span><span style="color: #F5A9B8;">n</span><span style="color: #5BCEFA;">s</span></span>piler. This basically means you can embed HTML into your Markdown blog-styled posts, and it will interpret correctly!</p>
|
||||
<p style="background-color:grey;color:white;font-style:italic;">If you noticed <span style="color: #5BCEFA; font-weight: bold;">data</span> was blue! This works due to the HTML / CSS / Markdown <span style="font-weight: bold; font-size: 1em; padding: 0.2em 0.4em; border-radius: 4px;"><span style="color: #5BCEFA;">T</span><span style="color: #F5A9B8;">r</span><span style="color: #FFFFFF;">a</span><span style="color: #F5A9B8;">n</span><span style="color: #5BCEFA;">s</span>piler</span>. This basically means you can embed HTML into your Markdown blog-styled posts, and it will interpret correctly!</p>
|
||||
|
||||
**HTML Example:**
|
||||
|
||||
|
||||
Reference in New Issue
Block a user