{% partial file="new_partial" /%}

Creating Partials

Partials are created as regular markdown files in your project structure. To create a partial, click the + button in the sidebar of a project and select “New Partial”. Then add the content you want to reuse to the partial.

Referencing Partials

Reference partials in your markdown by using the {% partial %} tag.
{% partial file="new_partial" /%}
To access from a slash command start typing /partial. Partials can be organized in directories just like regular pages. The path becomes the identifier used to reference the partial
new_partial             # Referenced as file="new_partial"
components/
    └── footer          # Referenced as file="components/footer"

Naming Conventions

Partials should be named using snake_case as this makes referencing straightforward.