# Overview The following syntax will no longer work: ```rust html! { br / link rel="stylesheet" href="styles.css" / } ``` This should be changed to the following: ```rust html! { br; link rel="stylesheet" href="styles.css"; } ``` # Rationale The `;` syntax was introduced in #96; the rationale for it can be found there. Removing support for the older `/` syntax will simplify the API surface, and allow for the space to be used for other things. |
||
---|---|---|
.. | ||
src | ||
Cargo.toml |