Skip to content

Commit fe068d6

Browse files
committed
Fix markdown headings
1 parent 01bbdbc commit fe068d6

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

crates/re_space_view_text_document/src/space_view_class.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ impl SpaceViewClass for TextDocumentSpaceView {
130130
.text_styles
131131
.entry(egui::TextStyle::Heading)
132132
.or_insert(egui::FontId::proportional(32.0))
133-
.size = 24.0;
133+
.size = 32.0;
134134

135135
egui_commonmark::CommonMarkViewer::new("markdown_viewer")
136136
.max_image_width(Some(ui.available_width().floor() as _))

crates/re_viewer/data/quick_start_guides/cpp_connect.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
## C++ Quick Start
1+
# C++ Quick Start
22

33
${SAFARI_WARNING}
44

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

88
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:
@@ -11,7 +11,7 @@ If you need to install the viewer, follow the [installation guide](https://www.r
1111

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

14-
#### Using the Rerun C++ SDK with CMake
14+
## Using the Rerun C++ SDK with CMake
1515
```cmake
1616
include(FetchContent)
1717
FetchContent_Declare(rerun_sdk URL
@@ -29,7 +29,7 @@ Make sure you link with `rerun_sdk`:
2929
target_link_libraries(your_executable PRIVATE rerun_sdk)
3030
```
3131

32-
##### Logging your own data
32+
### Logging your own data
3333

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

crates/re_viewer/data/quick_start_guides/how_does_it_work.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### How does it work?
1+
## How does it work?
22

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

crates/re_viewer/data/quick_start_guides/python_connect.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
## Python Quick Start
1+
# Python Quick Start
22

33
${SAFARI_WARNING}
44

5-
### Installing the Rerun SDK
5+
## Installing the Rerun SDK
66

77
The Rerun SDK is available on [PyPI](https://pypi.org/) under the
88
[`rerun-sdk`](https://pypi.org/project/rerun-sdk/) name. It can be installed like any other
@@ -12,7 +12,7 @@ Python package:
1212
pip install rerun-sdk
1313
```
1414

15-
### Logging your own data
15+
## Logging your own data
1616

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

crates/re_viewer/data/quick_start_guides/python_spawn.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
## Python Quick Start
1+
# Python Quick Start
22

33
${SAFARI_WARNING}
44

5-
### Installing the Rerun SDK
5+
## Installing the Rerun SDK
66

77
The Rerun SDK is available on [PyPI](https://pypi.org/) under the
88
[`rerun-sdk`](https://pypi.org/project/rerun-sdk/) name. It can be installed like any other
@@ -12,7 +12,7 @@ Python package:
1212
pip install rerun-sdk
1313
```
1414

15-
### Logging your own data
15+
## Logging your own data
1616

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

crates/re_viewer/data/quick_start_guides/rust_connect.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
## Rust Quick Start
1+
# Rust Quick Start
22

33
${SAFARI_WARNING}
44

5-
### Installing Rerun
5+
## Installing Rerun
66

77
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`.
88

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

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

17-
### Logging your own data
17+
## Logging your own data
1818

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

crates/re_viewer/data/quick_start_guides/rust_spawn.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
## Rust Quick Start
1+
# Rust Quick Start
22

33
${SAFARI_WARNING}
44

5-
### Installing Rerun
5+
## Installing Rerun
66

77
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`.
88

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

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

17-
### Logging your own data
17+
## Logging your own data
1818

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

0 commit comments

Comments
 (0)