if (ncube.containsCellById(coord))
{
Object cell = ncube.getCellByIdNoExecute(coord);
if (cell instanceof CommandCell)
{
CommandCell cmd = (CommandCell) cell;
if (StringUtilities.hasContent(cmd.getUrl()))
{
s.append("cell cell-url\">url: ");
s.append(cmd.getUrl());
}
else if (cmd instanceof GroovyBase)
{
s.append("cell cell-code\"><pre class=\"ncube-pre\">");
s.append(getCellValueAsString(cell));