-
Notifications
You must be signed in to change notification settings - Fork 1
Functions
fidel edited this page Mar 22, 2019
·
10 revisions
- multi-user support
- basic user profiles
- activity logging
- notes
- creating notes
- editing notes
- re-naming notes
- deleting notes
- fullscreen editing support
- fulltext search (via datatables)
- importing text notes (single or multiple text files)
- exporting notes dump (tab-separated csv file)
- admin section with user-management
- live search
The search function is somehow the most important part of monoto - at least for me as developer and primary user of this software.
The search covers both: note-title
and note-content
.
You can search for multiple strings, strings are divided by blanks/spaces.
If you enter the following in the search field
foo bar
monoto will find all notes which do contain foo
and bar
somewhere in the note title or note content
If you enter the following in the search field
"foo bar"
monoto will find all notes which do contain foo bar
somewhere in the note title or the note content.