📑 Collaborative document editing using Markdown
Перейти к файлу
Jonas 25389bd1df
Merge pull request #2330 from nextcloud/fix/cypress-login-command
Adapt cypress login command to small change in login page
2022-04-25 13:50:32 +02:00
.github Fix matrix variable reference in Github static-analysis action 2022-04-19 10:53:04 +02:00
.tx Fix wrong transifex key 2019-07-02 21:42:58 +02:00
appinfo Update version on master 2022-04-14 23:19:51 +02:00
css 💄 (#114): add table css variables 2022-03-31 14:29:27 +02:00
cypress adapt cypress login command to small change in 25 2022-04-25 13:29:29 +02:00
img feature: button to remove table 2022-03-31 14:29:27 +02:00
js Bump bundles 2022-04-21 14:08:00 +00:00
l10n [tx-robot] updated from transifex 2022-04-24 03:28:57 +00:00
lib Use proper file id source for public shares 2022-04-21 16:04:53 +02:00
src Expose lock in the text UI 2022-04-21 13:27:44 +02:00
templates Load new entrypoint names 2021-07-14 14:54:44 +02:00
tests Update master php testing versions 2022-04-07 12:02:32 +02:00
.eslintignore Add missing dotfiles 2019-06-17 12:50:24 +02:00
.eslintrc.js (#2184): add eslint-plugin-cypress 2022-03-14 11:38:29 -03:00
.gitattributes Add gitattributes 2019-08-06 10:42:47 +02:00
.gitignore gitignore: .php-cs-fixer.cache 2022-01-20 08:51:07 +01:00
.l10nignore Add translations for menu bar and ignore js folder 2019-07-17 16:40:03 +02:00
.php-cs-fixer.dist.php update: Nextcloud Coding Standard to 1.0 2022-01-18 10:47:20 +01:00
.stylelintrc.js fix stylelint config and one css import 2021-12-30 12:11:55 +01: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 Remove test routine from Makefile all target 2022-01-11 11:07:31 +01:00
README.md Migrate phpunit tests from drone to github actions (Fixes: #1679) 2022-02-08 15:00:01 +01:00
babel.config.js Fix chunk generation 2021-07-14 14:54:44 +02:00
composer.json deps: use dev-master of christophwurst/nextcloud 2022-03-02 11:04:19 +01:00
composer.lock build(deps-dev): bump psalm/phar from 4.20.0 to 4.22.0 2022-03-05 02:01:39 +00:00
cypress.json debug: large viewport to see more of the trace 2022-03-31 14:40:24 +02:00
krankerl.toml Prepare first release 2019-06-27 09:27:16 +02:00
package-lock.json build(deps): bump @nextcloud/moment from 1.2.0 to 1.2.1 2022-04-19 15:36:09 +00:00
package.json build(deps): bump @nextcloud/moment from 1.2.0 to 1.2.1 2022-04-19 15:36:09 +00:00
psalm.xml Fix psalm class 2021-01-11 08:24:40 +01:00
webpack.js Resolve local node_modules first 2021-07-14 14:54:44 +02:00

README.md

Nextcloud Text

GitHub Workflow Status Start contributing

📑 Collaborative document editing!

Features

  • 📝 Simple 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 the default text editor since Nextcloud 17. 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.