content
Set how Kirby handles content
Content file extension
Set the extension you want to use for your content files.
Possible values: txt
| md
(default: txt
)
return [
'content' => [
'extension' => 'md'
]
];
Ignore files/folders
Set an array of file/folder names that are not scanned by Kirby's core.
return [
'content' => [
'ignore' => []
]
];
Content locking
Since
3.2.5
Deactivate the content locking mechanism used by the Panel to prevent concurrent edits to a page, file or user:
return [
'content' => [
'locking' => false
]
];