Skip to content

Commit 2158a1f

Browse files
authored
Prevent stray html/head/body elements (#1044)
As documented [1], cheerio will wrap output in `<html><head></head><body>...</body></html>`. These fragments show up in various places in generated files. Call `load()` with the documented arguments to avoid this. [1] https://cheerio.js.org/docs/basics/loading
1 parent 8e523bf commit 2158a1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/common.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -473,5 +473,5 @@ export function printSchema(value, _root) {
473473
// There is an issue with `marked` not formatting a leading quote in a single,
474474
// quoted string value. By unwinding the special tags after converting to markdown
475475
// we can avoid that issue.
476-
return cheerioLoad(unwindTags(quoted)).html()
476+
return cheerioLoad(unwindTags(quoted), null, false).html()
477477
}

0 commit comments

Comments
 (0)