Writing Gemini (.gmi) text


Gemini is a plaintext format with a very limited set of features. While I convert the Gemini files to HTML so they can be shown in a web browser, Gemini itself is very limited. There are only a few tags, and they cannot be nested. To use a tag, you must start the line with that tag.

Headers:

# Big
## Smaller
### Smallest

Big

Smaller

Smallest


Hyperlinks:

Links can be absolute (https://google.com) or relative (index.gmi). Images can be embedded in your site as long as they are less than 32KB in size and relative links. Use automatic schema detection for URLs on flounder.online with "//flounder.online" urls, as they will properly link to both gemini and https pages.
=> https://google.com
=> index.gmi
=> //flounder.online Link with text
=> tree.jpg
https://google.com
index.gmi
Link with text
tree.jpg

Lists:

* Item 1
* Item 2
* Item 3

Quotes:
>Hello!
Hello!


Raw unformatted text:

​```
​# raw text
​```

# raw text