diff --git a/config.example.toml b/config.example.toml index fe9e2f4..7e497f2 100644 --- a/config.example.toml +++ b/config.example.toml @@ -129,6 +129,10 @@ leader-key="" # default=1000 leader-timeout=1000 +# If the backend supports it (e.g. Pleroma, Akkoma and Friendica), you can set +# the default content type for toots here (usually text/plain or text/markdown). +default-content-type="text/plain" + # [[general.timelines]] # Timelines adds panes of feeds. You can customize the number of feeds, what # they should show and the key to activate them. diff --git a/config/toml.go b/config/toml.go index fbcc447..16a3972 100644 --- a/config/toml.go +++ b/config/toml.go @@ -8,7 +8,6 @@ type ConfigTOML struct { OpenCustom OpenCustomTOML `toml:"open-custom"` NotificationConfig NotificationsTOML `toml:"desktop-notification"` Input InputTOML `toml:"input"` - DefaultContentType string `toml:"default-content-type"` // e.g. "text/plain" or "text/markdown" } type GeneralTOML struct {