In 4.0b4, plus symbols inside Razor functions are replaced with spaces whenever I save a page containing them. For example:
```
<html xmlns="http://www.w3.org/1999/xhtml">
<head></head>
<body>
<f:function name="ellipsoid.org.Content.Equation" xmlns:f="http://www.composite.net/ns/function/1.0">
<f:param name="Body" value="1 + 1 = 2" />
</f:function>
</body>
</html>
```
After saving this page, closing it, then opening it again, the plus symbols are replaced with spaces:
```
<html xmlns="http://www.w3.org/1999/xhtml">
<head></head>
<body>
<f:function name="ellipsoid.org.Content.Equation" xmlns:f="http://www.composite.net/ns/function/1.0">
<f:param name="Body" value="1 1 = 2" />
</f:function>
</body>
</html>
```
Comments: ** Comment from web user: mrboh **
```
<html xmlns="http://www.w3.org/1999/xhtml">
<head></head>
<body>
<f:function name="ellipsoid.org.Content.Equation" xmlns:f="http://www.composite.net/ns/function/1.0">
<f:param name="Body" value="1 + 1 = 2" />
</f:function>
</body>
</html>
```
After saving this page, closing it, then opening it again, the plus symbols are replaced with spaces:
```
<html xmlns="http://www.w3.org/1999/xhtml">
<head></head>
<body>
<f:function name="ellipsoid.org.Content.Equation" xmlns:f="http://www.composite.net/ns/function/1.0">
<f:param name="Body" value="1 1 = 2" />
</f:function>
</body>
</html>
```
Comments: ** Comment from web user: mrboh **
Awesome, cheers :)