In Astro v1.x, I could use the compiledContent() method to render a post into a string programmatically. Is there an equivalent in Astro v2.0? It seems like CollectionEntry#render() only returns a component to drop into a .astro page? When I call Content() directly, I get an error because I'm not passing in the right arguments, but I can't find any reference explaining what those arguments should be or if this is even possible.
For reference, here's what I'm doing with Astro v1.x:
https://github.com/humanwhocodes/humanwhocodes.com/blob/f44b87a5ba38faa8b5b68969f6bb279a8d07ac34/src/pages/feeds/blog.json.js#L30