AngularJS code for rendering plain text:
<p>{{ ScopePropertyX }} and {{ ScopePropertyY }}</p>
KnockoutJS equivalent:
<p>
<!-- ko text: ScopeObservableX --><!-- /ko -->
and
<!-- ko text: ScopeObservableY --><!-- /ko -->
</p>
or:
<p>
<span data-bind="text: ScopeObservableX"></span>
and
<span data-bind="text: ScopeObservableY"></span>
</p>