*/
public void testLink02() {
assertEquals("\n<p>The population is 3,993,933.</p>", wikiModel.render("The population is [[Has population:=3,993,933]].", false));
List<SemanticAttribute> list = wikiModel.getSemanticAttributes();
SemanticAttribute rel = list.get(0);
assertTrue(rel.getAttribute().equals("Has population"));
assertTrue(rel.getValue().equals("3,993,933"));
}