36 lines
690 B
Markdown
36 lines
690 B
Markdown
# gemtext `.gmi` syntax
|
|
## Links
|
|
```
|
|
=> https://example.com A cool website
|
|
=> gopher://example.com An even cooler gopherhole
|
|
=> gemini://example.com A supremely cool Gemini capsule
|
|
=> sftp://example.com
|
|
```
|
|
|
|
## Headings
|
|
```
|
|
# Heading
|
|
|
|
## Sub-heading
|
|
|
|
### Sub-sub-heading
|
|
```
|
|
|
|
## Lists
|
|
```
|
|
* Mercury
|
|
* Gemini
|
|
* Apollo
|
|
```
|
|
|
|
## Blockquotes
|
|
```
|
|
> Gemtext supports blockquotes. The quoted content is written as a single long line, which begins with a single > character
|
|
```
|
|
|
|
## Preformatted text
|
|
A line which starts with three backticks tells the client to toggle between its ordinary parsing mode,
|
|
and "preformatted mode".
|
|
|
|
[Original](https://gemini.circumlunar.space/docs/gemtext.gmi)
|