You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added loader animation
- Added option to remove media
- Added Option to disable displayed formats
- Added automatic ToC creation
- Replaced tag library with [tagify v3.22.1](https://github.com/yairEO/tagify)
- Removed HTML Format
- Reduced http requests to speed up
- Fixed empty response when delete a note
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
# PrimitiveNotes Plugin (Roundcube)
2
-
This is a simple notes plugin for Roundcube. Mainly notes in Markdown format, but also images (jpg, png) and PDF files are supported. The files are stored in a compatible format to TagSpaces, so that you can transfer these notes directly.
2
+
This is a simple notes plugin for Roundcube. Mainly notes in Markdown, but also images (jpg, png) and PDF files are supported. The files are stored in a name-compatible format to TagSpaces, so that you can transfer these notes directly.
3
3
4
4
# History
5
5
Originally, the idea for a standalone note app came from that I wanted to separate my notes from Evernote. Afterwards I ended up at TagSpaces. As TagSpace was too slow and extensive for me personally, I decided to develop my own app. This resulted first in a standalone project and was converted later to this plugin for Roundcube.
$config['notes_folder'] = '/files/Notes/'; // notes folder under basepath. in the end the folder is calculated by 'basepath' + 'username' + 'notes_folder'
4
4
$config['media_folder'] = '.media'; // folder to store embedded images or binary file like *.pdf
5
5
$config['default_format'] = 'md'; // default format, you can choose between 'md' or 'txt'
6
+
$config['list_formats'] = ['md', 'txt']; // list of displayed formats, can be a combination of md, html, txt, pdf, jpg, png
6
7
$config['yaml_support'] = true; // set to true, if you want enable yaml support
7
8
$config['yaml_start'] = '---'; // the yaml header should starts as the first sign in a markdown note and is marked by default with '---'
8
9
$config['yaml_end'] = '---'; // the signs which marks the end of the yaml header
0 commit comments