Skip to content

Commit

Permalink
Work around #3612 by not using H1
Browse files Browse the repository at this point in the history
  • Loading branch information
abey79 committed Oct 11, 2023
1 parent 7af2de0 commit c693673
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions crates/re_viewer/src/ui/welcome_screen/python_quick_start.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ pub(super) fn python_quick_start(
rec.log(
"markdown",
&re_sdk::TextDocument::new(
r#"# Python Quick Start
r#"
## Python Quick Start
## Installing the Rerun SDK
### Installing the Rerun SDK
The Rerun SDK is available on [PyPI](https://pypi.org/) under the
[`rerun-sdk`](https://pypi.org/project/rerun-sdk/) name. It can be installed like any other
Expand All @@ -20,7 +21,7 @@ Python package:
pip3 install rerun-sdk
```
## Try out the viewer
### Try out the viewer
The Rerun SDK comes with a demo that can be used to try the viewer. You can send a demo recording
to this viewer using the following command:
Expand All @@ -34,7 +35,7 @@ This will open a new recording that looks like this:
![Demo recording](https://static.rerun.io/quickstart2_simple_cube/632a8f1c79f70a2355fad294fe085291fcf3a8ae/768w.png)
## Logging your own data
### Logging your own data
Instead of a pre-packaged demo, you can log your own data. Copy and paste the following snippet in a new
Python file and execute it to create a new recording in this viewer:
Expand Down Expand Up @@ -68,7 +69,7 @@ rr.log(
)
```
## How does it work?
### How does it work?
TBC
"#
Expand Down

0 comments on commit c693673

Please sign in to comment.