(self, s, loc, toks)
| 2785 | return Hlist(toks[0]) |
| 2786 | |
| 2787 | def start_group(self, s, loc, toks): |
| 2788 | self.push_state() |
| 2789 | # Deal with LaTeX-style font tokens |
| 2790 | if len(toks): |
| 2791 | self.get_state().font = toks[0][4:] |
| 2792 | return [] |
| 2793 | |
| 2794 | def group(self, s, loc, toks): |
| 2795 | grp = Hlist(toks[0]) |
nothing calls this directly
no test coverage detected