# 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. |
||
---|---|---|
.. | ||
control-structures.md | ||
elements-attributes.md | ||
faq.md | ||
getting-started.md | ||
index.md | ||
partials.md | ||
render-trait.md | ||
splices-toggles.md | ||
text-escaping.md | ||
web-frameworks.md |