formatting guide

리비전: 197 • 기여자: yukil90

Formatting Guide

Welcome to the PBDev Wiki! You can format your content using Markdown syntax with additional powerful extensions.
Here's a breakdown of what’s available:

Basic Formatting

These features cover standard Markdown syntax that most users are familiar with.


Headings


Use # to ###### at the beginning of a line to create headings:
TOC consist of H2(##) to H4(####), only H2(##) makes external link . can make heading with ---, ===. # Heading 1
## Heading 2
### Heading 3

Heading 1
===
Heading 2
---

Line Break


End a line with two spaces to force a line break:

Syntax

First line. Second line.

Result

First line.
Second line.


Italic


Syntax

*italic* or _italic_

Result

italic


Bold


Syntax

** bold** or __bold__

Result

bold


Strikethrough


Syntax

~~strikethrough~~

Result

strikethrough


Blockquote


Syntax
This is a
multiline quote.
Result

This is a
multiline quote.


Code


Syntax
indent 4 spaces  
or  
3 backticks(```)
Result
indent 4 spaces  
or  
3 backticks(```)

Link


Syntax

[PBDev](https://pbdev.duckdns.org)

Result

PBDev


Image


Syntax

![Image name](/wiki/image/plant-1573.png)

Result

Image name


Table


Syntax
|name|linne|
|-|-|
|Rose|Rosa cinnamomea|
|Lily|Lilium candidum|
Result
name linne
Rose Rosa cinnamomea
Lily Lilium candidum

Autolink


Syntax

https://pbdev.duckdns.org

PBDev

Result

https://pbdev.duckdns.org [PBDev](https://pbdev.duckdns.org)


Advanced Formatting

These features extend Markdown with rich content and layout support.


Attributes


Syntax

This is **green**{style="color: green"}.

Result

This is green.


Syntax

text color

 |name|linne|
 |:--:|------|
 |Rose|*Rosa cinnamomea*{style="color: red"} |
 |Lily|*Lilium candidum*{style="color:rgb(246,243,214)"}|
Result
name linne
Rose Rosa cinnamomea
Lily Lilium candidum

Syntax

Table width

    |-------|:-----------:|--------|
    | Rose  | Flower    | 4.5    |
    | Cactus| Succulent | 4.8    |
    {style="width:30%"}```

##### Result  

| Name  | Category  | Rating |
|-------|:-----------:|--------|
| Rose  | Flower    | 4.5    |
| Cactus| Succulent | 4.8    |
{style="width:30%"}

---

##### Syntax    
Table theme  

     | Plant       | Type        | Sunlight       | Notes               |
     |-------------|-------------|----------------|---------------------|
     | Rose        | Flower      | Full sun       | Needs pruning       |
     | Cactus      | Succulent   | Full sun       | Water sparingly     |
     | Fern        | Shade plant | Indirect light | Keep soil moist     |
     | Lavender    | Herb        | Full sun       | Attracts pollinators|
     {.table-blue style="width:100%"}

##### Result  
| Plant       | Type        | Sunlight       | Notes               |
|-------------|-------------|----------------|---------------------|
| Rose        | Flower      | Full sun       | Needs pruning       |
| Cactus      | Succulent   | Full sun       | Water sparingly     |
| Fern        | Shade plant | Indirect light | Keep soil moist     |
| Lavender    | Herb        | Full sun       | Attracts pollinators|
{.table-blue style="width:100%"}



---
### Footnotes                
---

##### Syntax    
    Morbi[^note1] leo risus, porta ac consectetur ac.
    
    [^note1]: Elit Malesuada Ridiculus


##### Result  
Morbi[^note1] leo risus, porta ac consectetur ac.  

[^note1]: Elit Malesuada Ridiculus


---
### Description 
---

##### Syntax 
    Term 1  
    : Description 1  
   
##### Result  
Term 1  
: Description 1

댓글 (0)

댓글 불러오는 중…

댓글 남기기

페이지 도구
📄 최근 변경