section index pages, titles, quickstarts

This commit is contained in:
Deborah Barnard 2022-10-06 14:07:59 +01:00
parent 5ed6c82bcc
commit 7ae60a01ac
22 changed files with 38 additions and 31 deletions

View File

@ -191,6 +191,12 @@ img:not(.inline-image > .md-typeset img) {
border-left: 1px solid var(--color-primary);
} */
code {
tab-size: 2;
}
/* n8n classes */
.inline-image {
display:inline-block;
max-width: 25px;
@ -198,9 +204,7 @@ img:not(.inline-image > .md-typeset img) {
vertical-align: middle;
}
code {
tab-size: 2;
}

View File

@ -1,4 +1,4 @@
# Overview
# Code in n8n
There are two places in n8n where you need to use code:
@ -15,4 +15,4 @@ This section covers:
* [Introduction to JavaScript in n8n](/code-examples/javascript-functions/).
* Built in [methods](/code-examples/javascript-functions/methods/) and [variables](/code-examples/javascript-functions/variables/).
* [Checking incoming data](/code-examples/javascript-functions/check-incoming-data/).
* [Get the number of items returned by the last node](/code-examples/javascript-functions/number-items-last-node/).
* [Get the number of items returned by the last node](/code-examples/javascript-functions/number-items-last-node/).

View File

@ -1,4 +1,4 @@
# Introduction
# Level one: Introduction
Welcome to the **n8n Course Level 1**!

View File

@ -1,4 +1,4 @@
# Introduction
# Level two: Introduction
Welcome to the **n8n Course Level 2**!

View File

@ -1,4 +1,4 @@
# Overview
# Credentials
Credentials are private pieces of information issued by apps and services to authenticate you as a user and allow you to connect and share information between the app or service and the n8n node.

View File

@ -1,4 +1,4 @@
# Overview
# Data
Data represents units of information that are collected by and transmitted through nodes. For "basic usage" it is not necessarily needed to understand how the data that gets passed from one node to another is structured. However, it becomes important if you want to:
@ -10,4 +10,4 @@ This section covers:
* [Data structure](/data/data-structure/)
* [Transforming data](/data/transforming-data/)
* [Using code](/data/code/)
* [Using code](/data/code/)

View File

@ -1,7 +1,7 @@
# Overview
# Flow logic
n8n allows you to represent complex logic in your workflows.
* [Merging](/flow-logic/merging/)
* [Looping](/flow-logic/looping/)
* [Error handling](/flow-logic/error-handling/)
* [Error handling](/flow-logic/error-handling/)

View File

@ -1,8 +1,8 @@
# Overview
# Databases
This section describes:
* [n8n's database structure](/hosting/databases/structure/)
* [Supported databases and settings](/hosting/databases/supported-databases-settings/)
For guidance on managing database size, refer to [Scaling | Execution data](/hosting/scaling/execution-data/).
For guidance on managing database size, refer to [Scaling | Execution data](/hosting/scaling/execution-data/).

View File

@ -1,8 +1,8 @@
# Overview
# Installation
Installation guides for n8n:
* [Desktop app](/hosting/installation/desktop-app/)
* [npm](/hosting/installation/npm/)
* [Docker](/hosting/installation/docker/)
* [Cloud](/hosting/installation/cloud/)
* [Cloud](/hosting/installation/cloud/)

View File

@ -1,4 +1,4 @@
# Overview
# Built-in integrations
This section contains the node library: reference documentation for every built-in node in n8n, and their credentials.

View File

@ -1,4 +1,4 @@
# Overview
# Community nodes
n8n provides hundreds of built-in nodes. It also supports users [creating their own nodes](/integrations/creating-nodes/). These are community nodes.

View File

@ -1,4 +1,4 @@
# Overview
# Build a node
This section provides tutorials on building nodes. It covers:

View File

@ -1,7 +1,7 @@
# Overview
# Node building reference
This section contains reference information, including details about:
* [Node UI elements](/integrations/creating-nodes/build/reference/ui-elements/)
* [Organizing your node files](/integrations/creating-nodes/build/reference/node-file-structure/)
* Key parameters in your node's [base file](/integrations/creating-nodes/build/reference/node-base-files/) and [credentials file](/integrations/creating-nodes/build/reference/credentials-files/).
* Key parameters in your node's [base file](/integrations/creating-nodes/build/reference/node-base-files/) and [credentials file](/integrations/creating-nodes/build/reference/credentials-files/).

View File

@ -1,4 +1,4 @@
# Overview
# Deploy a node
This section contains details on how to deploy and share your node.

View File

@ -1,4 +1,4 @@
# Overview
# Creating nodes
Learn how to build your own custom nodes.
@ -16,4 +16,4 @@ This section assumes the following:
* Some familiarity with JavaScript and TypeScript.
* Ability to manage your own development environment, including git.
* Knowledge of npm, including creating and submitting packages.
* Knowledge of npm, including creating and submitting packages.

View File

@ -1,4 +1,4 @@
# Overview
# Plan a node
This section provides guidance on designing your node, including key technical decisions such as choosing your node building style.

View File

@ -1,4 +1,4 @@
# Overview
# Test a node
This section contains information about testing your node.

View File

@ -1,4 +1,4 @@
# Overview
# Reference
This section provides reference information about n8n, including:
@ -7,4 +7,4 @@ This section provides reference information about n8n, including:
* [Keyboard shortcuts](/reference/keyboard-shortcuts/)
* [Glossary](/reference/glossary/)
* [License](/reference/license/)
* [Data collection](/reference/data-collection/)
* [Data collection](/reference/data-collection/)

View File

@ -1,4 +1,4 @@
# Overview
# Try it out
This section gets you up and running with building workflows in n8n.

View File

@ -13,6 +13,8 @@ This guide shows you how to automate a task using a workflow in n8n, explaining
## Step one: Install and run n8n
!!! note "Skip this section if you've already installed n8n or signed up for a Cloud account"
--8<-- "_snippets/try-it-out/install-run-n8n.md"
## Step two: Create a new workflow

View File

@ -4,13 +4,14 @@ This quickstart gives you a very quick taste of n8n. Its aim is to allow you to
You will:
* Install the desktop app
* Load a workflow from the workflow templates library
* Add a node and configure it using expressions.
* Run your first workflow
## Step one: Install and run n8n
!!! note "Skip this section if you've already installed n8n or signed up for a Cloud account"
--8<-- "_snippets/try-it-out/install-run-n8n.md"
## Step two: Open a workflow template

View File

@ -1,4 +1,4 @@
# Overview
# Workflows
Learn about the key components of an automation in n8n: