Now that child is no longer here and context is no longer type of `RenderContext` but `ExtensionContext` I can't seem to find a way to do this correctly. ```dart extensions: [ TagExtension( tagsToExtend: {'table'}, builder: (extContext) { return SingleChildScrollView( scrollDirection: Axis.horizontal, child: extContext. ??, ); }, ) ], ```