-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Trevor Schirmer
authored and
CloudCannon
committed
Sep 12, 2024
1 parent
1ce0f03
commit 099f245
Showing
1 changed file
with
37 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,38 @@ | ||
source: docs | ||
# Which collections CloudCannon will show in the CMS sidebar | ||
collections_config: | ||
docs: | ||
name: Documentation | ||
path: "docs" | ||
output: true | ||
url: "/[full_slug]/" # mkdocs' default url behavior for nested files | ||
|
||
# Where CloudCannon should put new files, and how it should build URLs | ||
paths: | ||
uploads: uploads | ||
static: '' | ||
collections: '' | ||
data: '' | ||
editor: | ||
default_path: | ||
timezone: Etc/UTC | ||
uploads: "docs" # Put new files inside the docs folder | ||
static: "docs" # Reference files in the docs folder as /<file> | ||
|
||
# The available buttons in the CloudCannon Content Editor | ||
_editables: | ||
content: | ||
link: true | ||
blockquote: true | ||
bold: true | ||
format: "p h1 h2 h3 h4 h5 h6" | ||
italic: true | ||
strike: true | ||
subscript: true | ||
superscript: true | ||
underline: true | ||
bulletedlist: true | ||
indent: true | ||
numberedlist: true | ||
outdent: true | ||
code: true | ||
embed: true | ||
horizontalrule: true | ||
image: true | ||
table: true | ||
undo: true | ||
redo: true | ||
removeformat: true | ||
copyformatting: true |