-
Notifications
You must be signed in to change notification settings - Fork 51
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
1 parent
805d35d
commit b622f7a
Showing
14 changed files
with
182 additions
and
213 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Table of contents | ||
|
||
* [Welcome](README.md) | ||
|
||
## Getting Started | ||
|
||
* [Quickstart](getting-started/quickstart.md) | ||
* [Publish your docs](getting-started/publish-your-docs.md) | ||
|
||
## Basics | ||
|
||
* [Editor](basics/editor.md) | ||
* [Markdown](basics/markdown.md) | ||
* [Images & Media](basics/images-and-media.md) | ||
* [Interactive Blocks](basics/interactive-blocks.md) | ||
* [OpenAPI](basics/openapi.md) | ||
* [Integrations](basics/integrations.md) |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Editor | ||
|
||
GitBook has a powerful block-based editor that allows you to seamlessly create, update, and enhance your content. | ||
|
||
<figure><img src="https://gitbookio.github.io/onboarding-template-images/editor-hero.png" alt=""><figcaption></figcaption></figure> | ||
|
||
### Writing content | ||
|
||
GitBook offers a range of block types for you to add to your content inline — from simple text and tables, to code blocks and more. These elements will make your pages more useful to readers, and offer extra information and context. | ||
|
||
Either start typing below, or press `/` to see a list of all the blocks you can insert into your page. |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Images & Media | ||
|
||
GitBook allows you to add images and media easily to your docs. Simply drag a file into the editor, or use the file manager in the upper right corner to upload multiple images at once. | ||
|
||
<figure><img src="https://gitbookio.github.io/onboarding-template-images/images-hero.png" alt=""><figcaption><p>Add alt text and captions to your images</p></figcaption></figure> | ||
|
||
{% hint style="info" %} | ||
You can also add images simply by copying and pasting them directly into the editor - and GitBook will automatically add it to your file manager. | ||
{% endhint %} |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Integrations | ||
|
||
GitBook integrations allow you to connect your GitBook spaces to some of your favorite platforms and services. You can install integrations into your GitBook page from the Integrations menu in the top left. | ||
|
||
<figure><img src="https://gitbookio.github.io/onboarding-template-images/integrations-hero.png" alt=""><figcaption></figcaption></figure> | ||
|
||
### Types of integrations | ||
|
||
<table data-card-size="large" data-view="cards"><thead><tr><th></th><th></th><th data-hidden data-card-target data-type="content-ref"></th><th data-hidden data-card-cover data-type="files"></th><th data-hidden></th></tr></thead><tbody><tr><td><strong>Analytics</strong></td><td>Track analytics from your docs</td><td><a href="https://www.gitbook.com/integrations#analytics">https://www.gitbook.com/integrations#analytics</a></td><td><a href="../.gitbook/assets/2.png">2.png</a></td><td></td></tr><tr><td><strong>Support</strong></td><td>Add support widgets to your docs</td><td><a href="https://www.gitbook.com/integrations#support">https://www.gitbook.com/integrations#support</a></td><td><a href="../.gitbook/assets/3.png">3.png</a></td><td></td></tr><tr><td><strong>Interactive</strong></td><td>Add extra functionality to your docs</td><td><a href="https://www.gitbook.com/integrations#interactive">https://www.gitbook.com/integrations#interactive</a></td><td><a href="../.gitbook/assets/4.png">4.png</a></td><td></td></tr><tr><td><strong>Visitor Authentication</strong></td><td>Protect your docs and require sign-in</td><td><a href="https://www.gitbook.com/integrations#visitor-authentication">https://www.gitbook.com/integrations#visitor-authentication</a></td><td><a href="../.gitbook/assets/1.png">1.png</a></td><td></td></tr></tbody></table> |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Interactive Blocks | ||
|
||
In addition to the default Markdown you can write, GitBook has a number of out-of-the-box interactive blocks you can use. You can find interactive blocks by pressing `/` to see which ones you can use. | ||
|
||
<figure><img src="https://gitbookio.github.io/onboarding-template-images/interactive-hero.png" alt=""><figcaption></figcaption></figure> | ||
|
||
### Tabs | ||
|
||
{% tabs %} | ||
{% tab title="First Tab" %} | ||
Each tab is like a mini page — it can contain multiple other blocks, of any type. So you can add code blocks, images, integration blocks and more to individual tabs in the same tab block. | ||
{% endtab %} | ||
|
||
{% tab title="Second Tab" %} | ||
Add images, embedded content, and code blocks, and more. | ||
|
||
```javascript | ||
const handleFetchEvent = async (request, context) => { | ||
return new Response({message: "Hello World"}); | ||
}; | ||
``` | ||
{% endtab %} | ||
{% endtabs %} | ||
|
||
### Expandable Sections | ||
|
||
<details> | ||
|
||
<summary>Click me to expand</summary> | ||
|
||
Expandable blocks are helpful in condensing what could otherwise be a lengthy paragraph. They are also great in step-by-step guides and FAQs. | ||
|
||
</details> | ||
|
||
### Drawings | ||
|
||
<img alt="" class="gitbook-drawing"> | ||
|
||
### Embedded Content | ||
|
||
{% embed url="https://www.youtube.com/watch?v=YILlrDYzAm4" %} | ||
|
||
{% hint style="info" %} | ||
GitBook supports thousands of embedded websites out of the box, simply by pasting their links. Feel free to check out which ones are supported natively [here](https://iframely.com/). | ||
{% endhint %} |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Markdown | ||
|
||
GitBook supports many different types of content, and is backed by Markdown — meaning you can copy and paste any existing Markdown files directly into the editor! | ||
|
||
<figure><img src="https://gitbookio.github.io/onboarding-template-images/markdown-hero.png" alt=""><figcaption></figcaption></figure> | ||
|
||
Feel free to test it out and copy the Markdown below by hovering over the code block in the upper right, and pasting into a new line underneath. | ||
|
||
```markdown | ||
# Heading | ||
|
||
This is some paragraph text, with a [link](https://docs.gitbook.com) to our docs. | ||
|
||
## Heading 2 | ||
- Point 1 | ||
- Point 2 | ||
- Point 3 | ||
``` | ||
|
||
{% hint style="info" %} | ||
If you have multiple files, GitBook makes it easy to import full repositories too — allowing you to keep your GitBook content in sync. | ||
{% endhint %} |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# OpenAPI | ||
|
||
You can sync GitBook pages with an OpenAPI or Swagger file or URL to include auto-generated API methods in your documentation. | ||
|
||
### OpenAPI Block | ||
|
||
GitBook's OpenAPI block is powered by [Scalar](https://scalar.com/), so you can test your APIs directly from your docs. | ||
|
||
{% swagger src="https://petstore3.swagger.io/api/v3/openapi.json" path="/pet" method="post" %} | ||
[https://petstore3.swagger.io/api/v3/openapi.json](https://petstore3.swagger.io/api/v3/openapi.json) | ||
{% endswagger %} |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Publish your docs | ||
|
||
Once you’ve finished writing, editing, or importing your content, you can publish your work to the web as a docs site. Your docs will be published on the web and available to your selected audience. | ||
|
||
You can publish your site and find related settings from your docs site's homepage. | ||
|
||
<figure><img src="https://gitbookio.github.io/onboarding-template-images/publish-hero.png" alt=""><figcaption></figcaption></figure> |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Quickstart | ||
|
||
<figure><img src="https://gitbookio.github.io/onboarding-template-images/quickstart-hero.png" alt=""><figcaption></figcaption></figure> | ||
|
||
Beautiful documentation starts with the content you create — And GitBook makes it easy to get started with any pre-existing content. | ||
|
||
{% hint style="info" %} | ||
Want to learn about writing content from scratch? Head to the [Basics](https://github.com/GitbookIO/onboarding-template/blob/main/getting-started/broken-reference/README.md) section to learn more. | ||
{% endhint %} | ||
|
||
### Import | ||
|
||
GitBook supports importing content from many popular writing tools and formats. If your content already exists, you can upload a file or group of files to be imported. | ||
|
||
<div data-full-width="false"> | ||
|
||
<figure><img src="https://gitbookio.github.io/onboarding-template-images/quickstart-import.png" alt=""><figcaption></figcaption></figure> | ||
|
||
</div> | ||
|
||
### Sync a repository | ||
|
||
GitBook also allows you to set up a bi-directional sync with an existing repository on GitHub or GitLab. Setting up Git Sync allows you and your team to write content in GitBook or in code, and never have to worry about your content becoming out of sync. |