-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathdefaultSettings.ts
More file actions
22 lines (21 loc) · 632 Bytes
/
Copy pathdefaultSettings.ts
File metadata and controls
22 lines (21 loc) · 632 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { SortOrder } from 'models';
import { IndexItemStyle, ZoottelkeeperPluginSettings } from './interfaces'
export const DEFAULT_SETTINGS: ZoottelkeeperPluginSettings = {
indexPrefix: '_Index_of_',
indexItemStyle: IndexItemStyle.PureLink,
indexTagValue: 'MOC',
indexTagBoolean: true,
indexTagSeparator: ', ',
indexTagLabel: 'tags',
cleanPathBoolean: true,
folderEmoji: ':card_index_dividers:',
fileEmoji: ':page_facing_up:',
enableEmojis: false,
foldersExcluded: '',
foldersIncluded: '',
sortOrder: SortOrder.ASC,
addSquareBrackets: true,
embedSubIndex: false,
templateFile: '',
frontMatterSeparator: '---',
};