1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-17 22:57:35 +02:00

Italic filenames formatted accordingly (#1259)

**Task** Addresses:
https://github.com/google/comprehensive-rust/issues/625
Certain pages in the mdbook that display filenames have inconsistent
styling.

The style we want to follow: [the interop
section](https://google.github.io/comprehensive-rust/android/interoperability/java.html)

The current problem: [the RTC
driver](https://google.github.io/comprehensive-rust/exercises/bare-metal/rtc.html)
excercise page.

--
@mgeisler I checked this feature by looking through every page


![work](https://github.com/google/comprehensive-rust/assets/38759997/8affd0c2-71f2-4708-88f6-f63cf3c24efa)
This commit is contained in:
Matthew
2023-09-26 09:15:41 -04:00
committed by GitHub
parent 864bb942c0
commit a492b2f1b2
3 changed files with 19 additions and 19 deletions

View File

@ -12,7 +12,7 @@ server.
Create a new Cargo project and add the following dependencies:
`Cargo.toml`:
_Cargo.toml_:
<!-- File Cargo.toml -->
@ -47,7 +47,7 @@ Copy the following server and client code into `src/bin/server.rs` and
`src/bin/client.rs`, respectively. Your task is to complete these files as
described below.
`src/bin/server.rs`:
_src/bin/server.rs_:
<!-- File src/bin/server.rs -->
@ -61,7 +61,7 @@ described below.
{{#include chat-async/src/bin/server.rs:main}}
```
`src/bin/client.rs`:
_src/bin/client.rs_:
<!-- File src/bin/client.rs -->