mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
3ddd3594f0
* Absorb Snowpack config inside Astro * Add basic README * Format tests * Update esbuild * Format tests
5 lines
91 B
JavaScript
5 lines
91 B
JavaScript
import cheerio from 'cheerio';
|
|
|
|
export function doc(html) {
|
|
return cheerio.load(html);
|
|
}
|