Remove avatar metadata

This commit is contained in:
bacardi55 2021-06-10 00:06:37 +02:00
parent fbb16fcce1
commit e0f0f60e96
2 changed files with 21 additions and 9 deletions

11
Known-tinylogs.md Normal file
View File

@ -0,0 +1,11 @@
This is an unofficial list of known tinylogs respecting (mostly) the rfc format:
* gemini://gem.chriswere.uk/nano.gmi ChrisWere
* gemini://hexdsl.co.uk/micro.gmi hexdsl
* gemini://adele.work/tinylog.gmi Adele
* gemini://szczezuja.space/tinylog.gmi szczezuja
* gemini://frrobert.net/microblog.gmi frrobert
* gemini://rawtext.club/~deerbard/tinylog.gmi Deerbard
* gemini://capsule.sakrajda.eu/tinytinylog.gmi Sakrajda
* gemini://guillaume.pollux.casa/tinylog.gmi
* gemini://gmi.bacardi55.io/tinylog.gmi bacardi55

View File

@ -40,7 +40,6 @@ Weekday DD Month YYYY h:m[:s] TZ # format 1-24 for hours
Weekday DD Month YYYY h:m[:s] AM TZ # format 1-12 am/pm for hours Weekday DD Month YYYY h:m[:s] AM TZ # format 1-12 am/pm for hours
``` ```
**YYYY-MM-DD h:m[:s] TZ** **YYYY-MM-DD h:m[:s] TZ**
Seconds are optional. Seconds are optional.
@ -97,21 +96,23 @@ Additional informations could be added at the top of your tinylog file:
``` ```
# <Tinylog Title> # <Tinylog Title>
author: <author> author: <author>
avatar: <avatar>
``` ```
`<Tinylog Title>` Can be any text without a line break. `<Tinylog Title>` Can be any text without a line break.
`<author>` format: "@authorName@capsule.tld" with authorName the tinylog author name and "capsule.tld" the url of the author capsule. This intends to simplify communication between authors as well as discovery of new tinylog feeds. `<author>` format: "[emoji ]@authorName@capsule.tld" with authorName the tinylog author name and "capsule.tld" the url of the author capsule. The emoji and capsule url are optional. This intends to simplify communication between authors as well as discovery of new tinylog feeds.
Example: Example:
``` ```
author: @bacardi55
author: @bacardi55@gmi.bacardi55.io author: @bacardi55@gmi.bacardi55.io
author: 🤔 @bacardi55
author: 🤔 @bacardi55@gmi.bacardi55.io
``` ```
`<avatar>`: 1 emoji or 1 letter. Can be followed by a space and an optional text (eg: to indicate the code for the emoji)
example:
```
avatar: 🐘
avatar: 🦪 (:oyster:, U+1F9AA)
```
Other additional metadata could be added but shouldn't be expected.
# Additional information
[Tools around the tinylog format](Tools.md)
[Unofficial list of tinylog](Known-tinylogs.md)