@Override
 public void process(
     final LmlParser parser,
     final LmlTag tag,
     final Actor actor,
     final Cell<?> cell,
     final String rawAttributeData) {
   final Value horizontalValue =
       LmlUtilities.parseHorizontalValue(parser, tag.getParent(), actor, rawAttributeData);
   cell.spaceRight(horizontalValue);
 }