This is just a test page.

A one liner `int a = 5;` demonstrating the coding syntax capabilities. This sentence needs to trigger line wrapping for the sake of testing out the mobile screen width so I know if I need to do something or not. And so it was tested.

public bool RequiresForceFire
{
	get
	{
		if (Actor == null)
			return false;
</p>

<p>
var isTargetable = false;
foreach (var targetable in Actor.Targetables)
{
        if (!targetable.IsTraitEnabled())
                continue;
</p>

<p>
        isTargetable = true;
        if (!targetable.RequiresForceFire)
                return false;
}
</p>

<p>
		return isTargetable;
	}
}

def print<sub>hi</sub>(name)
  puts &ldquo;Hi, #{name}&rdquo;
end
print<sub>hi</sub>(&rsquo;Tom&rsquo;)
#=&gt; prints &rsquo;Hi, Tom&rsquo; to STDOUT.