Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent stray html/head/body elements #1044

Merged
merged 1 commit into from
Mar 21, 2025
Merged

Conversation

bitfehler
Copy link
Contributor

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

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
@newhouse
Copy link
Collaborator

Are you saying that it's been outputting a whole bunch of html and body tags all over the DOM?

@bitfehler
Copy link
Contributor Author

@newhouse yes. I used the CLI, first after installing with npm install -g, then also tried from source. Here is a snippet of what it generates:

              <div class="doc-examples">
                <h4 class="example-heading">Example</h4>
                <div class="example-section example-section-is-code operation-query-example">
                  <h5>Query</h5>
                  <html>
                    <head></head>
                    <body><pre><code class="hljs language-gql"><span class="hljs-symbol"><span class="hljs-keyword">query</span> auditLog<span class="hljs-tag">(<span class="hljs-code">$cursor</span>:<span class="hljs-type"> Cursor)</span> {
  auditLog(cursor: <span class="hljs-code">$cursor</span>)</span> <span class="hljs-tag">{
    <span class="hljs-symbol">results <span class="hljs-tag">{
      <span class="hljs-type">...AuditLogEntryFragment</span>
    }</span></span>
    <span class="hljs-symbol">cursor</span>
  }</span></span>
}
</code></pre>
                    </body>
                  </html>
                </div>
                <div class="example-section example-section-is-code operation-variables-example">
                  <h5>Variables</h5>
                  <html>
                    <head></head>
                    <body><pre><code class="hljs language-json"><span class="hljs-punctuation">{</span><span class="hljs-attr">"cursor"</span><span class="hljs-punctuation">:</span> <span class="hljs-string">Cursor</span><span class="hljs-punctuation">}</span>
</code></pre>
                    </body>
                  </html>
                </div>
                <div class="example-section example-section-is-code operation-response-example">
                  <h5>Response</h5>
                  <html>
                    <head></head>
                    <body><pre><code class="hljs language-json"><span class="hljs-punctuation">{</span>

@newhouse
Copy link
Collaborator

I'll try to get this in and out ASAP.

@newhouse newhouse merged commit 2158a1f into anvilco:main Mar 21, 2025
6 of 7 checks passed
@newhouse
Copy link
Collaborator

@bitfehler published in 3.0.4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants