📑 Collaborative document editing using Markdown
Перейти к файлу
Julius Härtl 4a21ca30b9
Merge pull request #1590 from nextcloud/bugfix/1507
Only return workspace property for top node in a propfind request
2021-05-19 11:26:18 +02:00
.github Use viewer in testing mode 2021-03-11 14:57:15 +01:00
.tx Fix wrong transifex key 2019-07-02 21:42:58 +02:00
appinfo Update version on master 2021-02-03 09:48:41 +01:00
css Add bottom margin to lists so they have the same as paragraphs 2021-03-11 18:23:45 +01:00
cypress Merge pull request #1306 from nextcloud/azul/fix/cypress 2020-12-28 12:47:22 +01:00
img Fix alignment and design of checkboxes 2020-09-29 13:07:29 +02:00
js Revert "Bump node-sass from 5.0.0 to 6.0.0" 2021-05-18 06:02:13 +00:00
l10n [tx-robot] updated from transifex 2021-05-03 03:22:44 +00:00
lib Only return workspace property for top node in a propfind request 2021-05-14 14:12:04 +02:00
src Improve design of idle/reconnect message 2021-04-16 16:44:38 +02:00
templates Start with direct editing 2019-12-02 12:28:30 +01:00
tests Update baseline 2021-04-21 11:40:42 +02:00
.drone.yml Update version on master 2020-09-18 10:55:53 +02:00
.eslintignore Add missing dotfiles 2019-06-17 12:50:24 +02:00
.eslintrc.js Move to @nextcloud/eslint-config 2020-04-22 16:10:04 +02:00
.gitattributes Add gitattributes 2019-08-06 10:42:47 +02:00
.gitignore Add public share page tests 2020-01-04 13:37:02 +01:00
.l10nignore Add translations for menu bar and ignore js folder 2019-07-17 16:40:03 +02:00
.php_cs.dist Add PHP-CS 2020-12-29 15:23:58 +01:00
.stylelintrc.js Add stylelint 2019-07-01 21:08:01 +02:00
CHANGELOG.md Prepare release of 1.0.2 2019-08-08 10:16:01 +02:00
COPYING Add basic app structure 2019-03-18 17:15:31 +01:00
Makefile Cypress test skeleton 2020-01-04 11:31:51 +01:00
README.md Add note about rich workspace config to README 2021-03-09 16:56:22 +01:00
babel.config.js Add @babel/plugin-transform-modules-commonjs 2020-12-22 08:37:13 +01:00
composer.json Bump christophwurst/nextcloud from 20.0.5 to 21.0.0 2021-03-06 02:01:41 +00:00
composer.lock Bump psalm/phar from 4.7.0 to 4.7.1 2021-05-01 01:01:53 +00:00
cypress.json Cypress test skeleton 2020-01-04 11:31:51 +01:00
krankerl.toml Prepare first release 2019-06-27 09:27:16 +02:00
package-lock.json Revert "Bump node-sass from 5.0.0 to 6.0.0" 2021-05-18 06:02:13 +00:00
package.json Revert "Bump node-sass from 5.0.0 to 6.0.0" 2021-05-18 06:02:13 +00:00
psalm.xml Fix psalm class 2021-01-11 08:24:40 +01:00
webpack.common.js Switch to style-loader 2020-11-17 10:49:03 +01:00
webpack.dev.js Bump webpack-merge from 4.2.2 to 5.1.2 2020-08-24 08:43:07 +02:00
webpack.prod.js Bump webpack-merge from 4.2.2 to 5.1.2 2020-08-24 08:43:07 +02:00

README.md

Nextcloud Text

Drone (self-hosted) with branch Start contributing

📑 Collaborative document editing!

  • 📝 Focused writing: No distractions, only the formatting you need.
  • 🙋 Work together: Share and collaborate with friends and colleagues, no matter if they use Nextcloud or not!
  • 💾 Open format: Files are saved as Markdown, so you can edit them from any other text app too.
  • Strong foundation: We use 🐈 tiptap which is based on 🦉 ProseMirror – huge thanks to them!

Nextcloud Text is available for Nextcloud 16 and will be part of Nextcloud 17 as the default text editor. To start editing just open an existing markdown or plaintext file or create a new one.

Configuration

The rich workspaces in the file list can be disabled either by the users in the files app settings or globally by the admin with the following occ command:

occ config:app:set text workspace_available --value=0

🏗 Development setup

Currently this app requires the master branch of the Viewer app.

  1. ☁ Clone this app into the apps folder of your Nextcloud: git clone https://github.com/nextcloud/text.git
  2. 👩‍💻 In the folder of the app, run the command make to install dependencies and build the Javascript.
  3. Enable the app through the app management of your Nextcloud
  4. 🎉 Partytime! Help fix some issues and review pull requests 👍

🧙 Advanced development stuff

To build the Javascript whenever you make changes, instead of the full make you can also run npm run build. Or run npm run watch to rebuild on every file save.