Skip to content

Commit 4e70c3f

Browse files
Jerry SuJerry Su
authored andcommitted
Fix markdown tag escaping in code block
1 parent 5cd309f commit 4e70c3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

draft/2025-11-26-this-week-in-rust.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ and just ask the editors to select the category.
5959
LApp!(APP = App::new().binding("127.0.0.1:3000").build());
6060

6161
endpoint! {
62-
APP.url("/users/<int:id>"),
63-
pub get_user<HTTP> {
62+
APP.url("/users/\<int:id\>"),
63+
pub get_user\<HTTP\> {
6464
let user_id = req.param("id");
6565
json_response(json!({ "id": user_id }))
6666
}

0 commit comments

Comments
 (0)