add(configuration, String.class, Renderable.class, new Coercion<String, Renderable>()
{
public Renderable coerce(String input)
{
return new StringRenderable(input);
}
});
add(configuration, Renderable.class, Block.class, new Coercion<Renderable, Block>()
{