Skip to content

Commit

Permalink
feat: better titles
Browse files Browse the repository at this point in the history
  • Loading branch information
topheman committed Oct 24, 2024
1 parent 13564b2 commit 410e968
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 21 deletions.
2 changes: 1 addition & 1 deletion custom.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.sidebar .chapter-item {
padding-left: 20px;
padding-left: 10px;
}
18 changes: 11 additions & 7 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,23 @@

# rolldown

- [Explore crates](./rolldown/README.md)
- [Build](./rolldown/build.md)
- [rolldown / Explore crates](./rolldown/README.md)
- [rolldown / Build](./rolldown/build.md)

# oxc

- [Explore crates](./oxc/README.md)
- [Build](./oxc/build.md)
- [oxc / Explore crates](./oxc/README.md)
- [oxc / Build](./oxc/build.md)

# oxc-resolver

- [oxc-resolver / Explore crate](./oxc-resolver/README.md)

# napi

- [Introduction](./napi/README.md)
- [Class](./napi/class.md)
- [napi / Introduction](./napi/README.md)
- [napi / Class](./napi/class.md)

# rust / crates

- [Notes](./rust/README.md)
- [rust / Notes](./rust/README.md)
2 changes: 1 addition & 1 deletion src/napi/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# napi
# napi / Introduction

<https://napi.rs>

Expand Down
15 changes: 3 additions & 12 deletions src/oxc-resolver/README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
# oxc / Explore crates
# oxc-resolver / Explore crates

## oxc_span
<https://github.com/oxc-project/oxc-resolver>

[`oxc::oxc_span::span::types`](https://github.com/oxc-project/oxc/blob/main/crates/oxc_span/src/span/types.rs)

> A range in text, represented by a zero-indexed start and end offset.
```rust
use oxc_span::Span;
let text = "foo bar baz";
let span = Span::new(4, 7);
assert_eq!(&text[span], "bar");
```
Rust version of [webpack/enhanced-resolve](https://github.com/webpack/enhanced-resolve).

0 comments on commit 410e968

Please sign in to comment.