Only this pageAll pages
Powered by GitBook
1 of 11

23winhealth

Loading...

Getting Started

Loading...

Loading...

Basics

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

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.

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

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.

23WIN - Trải Nghiệm Cá Cược Đỉnh Cao, Thắng Lớn Mỗi Ngày!

ĐC: 902 Quang Trung, Phường 8, Gò Vấp, Hồ Chí Minh, Việt Nam

SĐT: 0846 369 898

Email: cskh247@23win

hastags: #23win #nhacai23win #trangchu23win #23winhealth

Socials:

là nhà cái uy tín, mang đến cho người chơi những cơ hội cá cược tuyệt vời. Với giao diện thân thiện và dễ sử dụng, bạn có thể dễ dàng tham gia vào các trò chơi hấp dẫn như cá cược thể thao, casino trực tuyến và game slot.

Website:

23WIN
https://23win.health/
https://www.discogs.com/fr/user/23winhealth
https://gravatar.com/23winhealth
https://notionpress.com/author/1182229
https://forum.dmec.vn/index.php?members/23winhealth.103710/#info
https://www.reverbnation.com/artist/23winhealth
https://www.instapaper.com/p/23winhealth
https://videos.muvizu.com/Profile/23winhealth/Latest
https://23winhealth.blogspot.com/2025/03/23win-trai-nghiem-ca-cuoc-inh-cao-thang.html
https://www.blogger.com/profile/15823775812061415837
https://23winhealth.wordpress.com/
https://sites.google.com/view/23winhealth/home
https://about.me/winhealth23
https://telegra.ph/23WIN-03-06
https://www.producthunt.com/@23winhealth
https://wakelet.com/@23winhealth
https://www.plurk.com/winhealth23
https://blogcircle.jp/user/winhealth23
https://www.silverstripe.org/ForumMemberProfile/show/217314
https://www.metooo.com/u/23winhealth
https://www.multichain.com/qa/user/23winhealth
https://www.twitch.tv/23winhealth/about
https://fileforum.com/profile/23winhealth

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.

# Heading

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

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

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

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.

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.

Add alt text and captions to your images

Quickstart

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

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.

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

Basics

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 , so you can test your APIs directly from your docs.

Scalar

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

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: 
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"
}