Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix markdown heading size #4178

Merged
merged 2 commits into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ egui = { version = "0.23.0", features = [
"log",
"puffin",
] }
egui_commonmark = { version = "0.9", default-features = false }
egui_commonmark = { version = "0.9.2", default-features = false }
egui_extras = { version = "0.23.0", features = ["http", "image", "puffin"] }
egui_plot = "0.23.0"
egui_tiles = "0.3.1"
Expand Down
8 changes: 4 additions & 4 deletions crates/re_viewer/data/quick_start_guides/cpp_connect.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## C++ Quick Start
# C++ Quick Start

${SAFARI_WARNING}

#### Installing the Rerun viewer
## Installing the Rerun viewer
The Rerun C++ SDK works by connecting to an awaiting Rerun Viewer over TCP.

If you need to install the viewer, follow the [installation guide](https://www.rerun.io/docs/getting-started/installing-viewer). Two of the more common ways to install the Rerun are:
Expand All @@ -11,7 +11,7 @@ If you need to install the viewer, follow the [installation guide](https://www.r

After you have installed it, you should be able to type `rerun` in your terminal to start the viewer.

#### Using the Rerun C++ SDK with CMake
## Using the Rerun C++ SDK with CMake
```cmake
include(FetchContent)
FetchContent_Declare(rerun_sdk URL
Expand All @@ -29,7 +29,7 @@ Make sure you link with `rerun_sdk`:
target_link_libraries(your_executable PRIVATE rerun_sdk)
```

##### Logging your own data
### Logging your own data

Put the following code to your `main.cpp`:

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### How does it work?
## How does it work?

Rerun's goal is to make handling and visualizing multimodal data streams easy and performant.

Expand Down
6 changes: 3 additions & 3 deletions crates/re_viewer/data/quick_start_guides/python_connect.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Python Quick Start
# Python Quick Start

${SAFARI_WARNING}

### 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 @@ -12,7 +12,7 @@ Python package:
pip install rerun-sdk
```

### Logging your own data
## Logging 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
6 changes: 3 additions & 3 deletions crates/re_viewer/data/quick_start_guides/python_spawn.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Python Quick Start
# Python Quick Start

${SAFARI_WARNING}

### 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 @@ -12,7 +12,7 @@ Python package:
pip install rerun-sdk
```

### Logging your own data
## Logging your own data

Copy and paste the following snippet in a new Python file and execute it to create a recording in a new viewer:

Expand Down
6 changes: 3 additions & 3 deletions crates/re_viewer/data/quick_start_guides/rust_connect.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Rust Quick Start
# Rust Quick Start

${SAFARI_WARNING}

### Installing Rerun
## Installing Rerun

To use the Rerun SDK in your project, you need the [rerun crate](https://crates.io/crates/rerun) which you can add with `cargo add rerun`.

Expand All @@ -14,7 +14,7 @@ cargo init cube && cd cube && cargo add rerun --features native_viewer

Note that the Rerun SDK requires a working installation of Rust 1.72+.

### Logging your own data
## Logging your own data

Add the following code to your `main.rs` file:

Expand Down
6 changes: 3 additions & 3 deletions crates/re_viewer/data/quick_start_guides/rust_spawn.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Rust Quick Start
# Rust Quick Start

${SAFARI_WARNING}

### Installing Rerun
## Installing Rerun

After you have [installed the viewer](https://www.rerun.io/docs/getting-started/installing-viewer) you can simply add [the rerun crate](https://crates.io/crates/rerun) to your project with `cargo add rerun`.

Expand All @@ -14,7 +14,7 @@ cargo init cube && cd cube && cargo add rerun

Note that the Rerun SDK requires a working installation of Rust 1.72+.

### Logging your own data
## Logging your own data

Add the following code to your `main.rs` file:

Expand Down
Loading