diff --git a/_layouts/post.html b/_layouts/post.html index 0baa307..f2a3e5a 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -6,7 +6,7 @@ layout: default

{{ page.title | markdownify }}

{% if page.subtitle %} -

{{ page.subtitle }}

+

{{ page.subtitle | markdownify }}

{% endif %}

{{ page.date | date: "%b %-d, %Y" }} diff --git a/_posts/2022-06-16-rust-boxed-str-vs-string.md b/_posts/2022-06-16-rust-boxed-str-vs-string.md index a1c1fdd..8236941 100644 --- a/_posts/2022-06-16-rust-boxed-str-vs-string.md +++ b/_posts/2022-06-16-rust-boxed-str-vs-string.md @@ -1,6 +1,7 @@ --- layout: post title: "What is `Box` and how is it different from `String` in Rust?" +subtitle: Using `rust-lldb` to understand rust memory internals date: 2022-06-16 00:00:00 permalink: rust-box-str-vs-string/ categories: programming