Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions admin_manual/configuration_server/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Nextcloud configuration
reverse_proxy_configuration
bruteforce_configuration
automatic_configuration
text_configuration
theming
oauth2
admin_delegation_configuration
Expand Down
32 changes: 32 additions & 0 deletions admin_manual/configuration_server/text_configuration.rst
Original file line number Diff line number Diff line change
@@ -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