def _format_row(self, env, context, text):
        if text:
            out = io.StringIO()
            Formatter(env, context).format(text, out)
            text = self._parse_inner_table(out.getvalue())