1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! Named content blocks (Rails `content_for(:name) { ... }` + `yield :name`).
//!
//! A view captures HTML under a key with [`ContentFor::set`]; the layout reads it
//! back with [`ContentFor::get`]. Repeated `set`s for a key append, matching
//! Rails' accumulating `content_for`.
use BTreeMap;
/// A store of named content blocks for one render.