Document text app settings

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2022-07-19 17:13:26 +02:00
parent d6df9fb31e
commit ad5a4bfa14
2 changed files with 33 additions and 0 deletions

View File

@@ -19,6 +19,7 @@ Nextcloud configuration
reverse_proxy_configuration
bruteforce_configuration
automatic_configuration
text_configuration
theming
oauth2
admin_delegation_configuration

View File

@@ -0,0 +1,32 @@
========
Text app
========
Disable rich workspaces globally
--------------------------------
Rich workspaces can be disabled globally by the admin by setting the following config option to 0 (default is 1):
::
occ config:app:set text workspace_available --value=0
Default file extension
----------------------
The default file extension can be changed to txt in order to always create plain text files (default is md):
::
occ config:app:set text default_file_extension --value=txt
Disable rich text editing
-------------------------
Rich text editing can be turned off globally to always open markdown files in their raw format, without rendering of the formatting (default is 1):
::
occ config:app:set text rich_editing_enabled --value=0