mirror of
https://github.com/nextcloud/documentation.git
synced 2026-01-02 17:59:36 +07:00
Document text app settings
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
@@ -19,6 +19,7 @@ Nextcloud configuration
|
||||
reverse_proxy_configuration
|
||||
bruteforce_configuration
|
||||
automatic_configuration
|
||||
text_configuration
|
||||
theming
|
||||
oauth2
|
||||
admin_delegation_configuration
|
||||
|
||||
32
admin_manual/configuration_server/text_configuration.rst
Normal file
32
admin_manual/configuration_server/text_configuration.rst
Normal 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
|
||||
Reference in New Issue
Block a user