Skip to content

Commit 8624dd0

Browse files
committed
Merge branch 'main' of https://github.com/ClickHouse/clickhouse-docs into Blargian-patch-885478
2 parents 1668278 + 88c829d commit 8624dd0

File tree

18 files changed

+724
-1898
lines changed

18 files changed

+724
-1898
lines changed

contribute/style-guide.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,8 @@ Code will be inserted here
145145
\```
146146
```
147147

148+
**File paths are relative to the root of the docs repository**
149+
148150
You should commit the code inserted to the snippet as we want people (or LLMs)
149151
reading the markdown to be able to see the code. The advantage of importing code
150152
to snippets this way is that you can test your snippets externally or store them
@@ -473,3 +475,48 @@ vale --filter='.Name == "ClickHouse.Headings"' docs/integrations
473475
This will run only the rule named `Headings` on
474476
the `docs/integrations` directory. Specifying a specific markdown
475477
file is also possible.
478+
479+
## Vertical numbered stepper
480+
481+
It is possible to render numbered steppers, as seen [here](https://clickhouse.com/docs/getting-started/quick-start/cloud)
482+
for example, using the following syntax:
483+
484+
`<VerticalStepper headerLevel="hN"></VerticalStepper>`
485+
486+
For example:
487+
488+
```markdown
489+
<VerticalStepper headerLevel="h2">
490+
## Header 1 {#explicit-anchor-1}
491+
492+
Some content...
493+
494+
## Header 2 {#explicit-anchor-2}
495+
496+
Some more content...
497+
498+
</VerticalStepper>
499+
```
500+
501+
You should specify `N` as the header level you want the vertical stepper to render
502+
for. In the example above, it is `h2` as we are using `##`. Use `h3` for `###`,
503+
`h4` for `####` etc.
504+
505+
The component also works with numbered lists using `headerLevel="list"`. For example:
506+
507+
```markdown
508+
<VerticalStepper headerLevel="h2">
509+
510+
1. First list item
511+
512+
Some content...
513+
514+
2. Second list item
515+
516+
Some more content...
517+
518+
</VerticalStepper>
519+
```
520+
521+
In this case, the first paragraph will be taken to be the label (the text next
522+
to the numbered circles of the vertical stepper) of the stepper.

docs/cloud/reference/03_billing/05_network-data-transfer.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ regions of other cloud providers.
1919
- Data egress to another region in the same cloud provider.
2020

2121
There are no charges for intra-region data transfer or Private Link/Private
22-
Service Connect use and data transfer.However, we reserve the right to implement
22+
Service Connect use and data transfer. However, we reserve the right to implement
2323
additional data transfer pricing dimensions if we see usage patterns that impact
24-
our ability to charge users appropriately.
24+
our ability to charge users appropriately.
25+
26+
Note: Cloud Service Provider (CSP) charges apply for Private Link/Private Service Connect usage. Please refer to the CSP’s pricing page for the most up-to-date information.
2527

2628
Data transfer charges vary by Cloud Service Provider (CSP) and region.
2729
Public internet egress pricing is based only on the origin region.

0 commit comments

Comments
 (0)