Only this pageAll pages
Powered by GitBook
1 of 11

thabet8club

Loading...

Getting Started

Loading...

Loading...

Basics

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Quickstart

Beautiful documentation starts with the content you create — and GitBook makes it easy to get started with any pre-existing content.

Want to learn about writing content from scratch? Head to the Basics section to learn more.

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.

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.

Editor

GitBook has a powerful block-based editor that allows you to seamlessly create, update, and enhance your content.

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 the blocks you can insert into your page.

Add a new block

1

Open the insert block menu

Press / on your keyboard to open the insert block menu.

2

Search for the block you need

Try searching for “Stepper”, for exampe, to insert the stepper block.

3

Insert and edit your block

Click or press Enter to insert your block. From here, you’ll be able to edit it as needed.

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 / from within the editor.

Tabs

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.

Add images, embedded content, code blocks, and more.

const handleFetchEvent = async (request, context) => {
    return new Response({message: "Hello World"});
};

Expandable sections

Click me to expand

Expandable blocks are helpful in condensing what could otherwise be a lengthy paragraph. They are also great in step-by-step guides and FAQs.

Drawings

Embedded content

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.

THABET – Nhà cái uy tín hàng đầu, thưởng lớn mỗi ngày

THABET là nhà cái cá cược trực tuyến uy tín hàng đầu tại Việt Nam, anh em hãy tải App Thabet Casino để trải nghiệm đa dạng loại game cá cược như: Game bài, bắn cá, thể thao, live casino, xổ số với tỷ lệ thắng cao, nạp rút siêu tốc và dịch vụ hỗ trợ 24/7. Tham gia ngay để nhận nhiều ưu đãi hấp dẫn tại link truy cập chính thức Thabet.

Website: https://thabet8.club/

Địa chỉ: 12 Cách Mạng Tháng 8, P. Bến Thành, Q.1, TP. Hồ Chí Minh

SĐT: 0907296821

Email: contact@thabet8.club

Hashtags: #thabet #nhacaithabet #thabet8club #trangchuthabet

Socials:

https://myspace.com/thabet8club

https://www.diigo.com/profile/thabet8club

https://ko-fi.com/thabet8club

https://www.discogs.com/fr/user/thabet8club

https://archive.org/details/@thabet8club

https://www.beamng.com/members/thabet8club.700104/

https://diendan.clbmarketing.com/members/thabet8club.279760/#about

https://notionpress.com/author/1263846

https://forum.dmec.vn/index.php?members/thabet8club.117579/#info

https://www.reverbnation.com/artist/thabet8club

https://www.instapaper.com/p/thabet8club

https://thabet8club.blogspot.com/2025/05/thabet-nha-cai-uy-tin-hang-au-thuong.html

https://thabet8club.wordpress.com/

https://sites.google.com/view/thabet8club/home

https://about.me/thabet8club

https://telegra.ph/THABET-05-18

https://www.producthunt.com/@thabet8club

https://wakelet.com/@thabet8club

https://www.plurk.com/thabet8club

https://blogcircle.jp/user/thabet8club

https://www.silverstripe.org/ForumMemberProfile/show/236717

https://www.metooo.com/u/thabet8club

https://www.multichain.com/qa/user/thabet8club

https://www.twitch.tv/thabet8club/about

https://fileforum.com/profile/thabet8club

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. Once published, your site will be accessible online only to your selected audience.

You can publish your site and find related settings from your docs site's homepage.

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.

Add alt text and captions to your images

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.

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!

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.

If you have multiple files, GitBook makes it easy to import full repositories too — allowing you to keep your GitBook content in sync.

# Heading

This is some paragraph text, with a [link](https://docs.gitbook.com) to our docs. 

## Heading 2
- Point 1
- Point 2
- Point 3

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.

Types of integrations

Analytics

Track analytics from your docs

Support

Add support widgets to your docs

Interactive

Add extra functionality to your docs

Visitor Authentication

Protect your docs and require sign-in

OpenAPI

You can sync GitBook pages with an OpenAPI or Swagger file or a URL to include auto-generated API methods in your documentation.

OpenAPI block

GitBook's OpenAPI block is powered by Scalar, so you can test your APIs directly from your docs.

Add a new pet to the store.

post

Add a new pet to the store.

Authorizations
Body
idinteger · int64OptionalExample: 10
namestringRequiredExample: doggie
photoUrlsstring[]Required
statusstring · enumOptional

pet status in the store

Possible values:
Responses
200

Successful operation

400

Invalid input

422

Validation exception

default

Unexpected error

post
POST /api/v3/pet HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 133

{
  "id": 10,
  "name": "doggie",
  "category": {
    "id": 1,
    "name": "Dogs"
  },
  "photoUrls": [
    "text"
  ],
  "tags": [
    {
      "id": 1,
      "name": "text"
    }
  ],
  "status": "available"
}
{
  "id": 10,
  "name": "doggie",
  "category": {
    "id": 1,
    "name": "Dogs"
  },
  "photoUrls": [
    "text"
  ],
  "tags": [
    {
      "id": 1,
      "name": "text"
    }
  ],
  "status": "available"
}