-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from Offerel/dev
Dev
Showing
54 changed files
with
3,449 additions
and
8,874 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
<?php | ||
$config['notes_basepath'] = '/path/to/server/folder/'; // absolute base! path where your notes are stored | ||
$config['notes_folder'] = '/files/Notes/'; // notes folder under basepath. in the end the folder is calculated by 'basepath' + 'username' + 'notes_folder' | ||
$config['notes_path'] = '/path/to/server/folder/%u/files/Notes'; // path to your notes, use %u for username | ||
$config['media_folder'] = '.media'; // folder to store embedded images or binary file like *.pdf | ||
$config['default_format'] = 'md'; // default format, you can choose between 'md' or 'txt' | ||
$config['list_formats'] = ['md', 'txt']; // list of displayed formats, can be a combination of md, html, txt, pdf, jpg, png | ||
$config['yaml_support'] = true; // set to true, if you want enable yaml support | ||
$config['yaml_start'] = '---'; // the yaml header should starts as the first sign in a markdown note and is marked by default with '---' | ||
$config['yaml_end'] = '---'; // the signs which marks the end of the yaml header | ||
$config['rm_md_media'] = true; // if set to yes, embedded media will be removed | ||
$config['rm_md_media'] = false; // if set to yes, embedded media will be removed | ||
?> |
Oops, something went wrong.