Code blocks should not escape " characters
Code blocks appear to escape " as "
Additional context
I'm on Firefox 67.0.2 on MacOS 10.14.5
Screenshot:

Just noticed this.
Was going to make a PR to a doc I noticed to correct a python script, but they appear fine in the README files.
This also applies to single quotes '
@RichieEscarez I'm guessing this is happening at build time, since the source seems correct?
Where does the build code live for the document website out of curiosity?
Our website content is located in knative/website. Regarding this issue, i've found a solution (and the cause, which i unintentionally introduced here).
Basically, Hugo had a breaking change type fix for how it treats 'shortcodes'. It improved things by sending the shortcode content to the markdown processor. You can now define if a shortcode gets sent to the markdown processor (use {{% ...%}} vs {{< ... >}}).
I found that change can also breaks things (like our double processed quotes) depending on syntax of previously defined shortcodes. The issue in our site is that our use of the readfile shortcode ends up sending content to the markdown processor twice. Ive determined how to fix this and need to set up a clean branch before opening a PR. In this effort, ive also determined how to "include" code files, so i also need to separate out that content for a separate PR (re PR #1409 ).
Okay! Let me know if I can help at all. I have so experience with Javascript as well if that's involved at all.
Okay! Let me know if I can help at all. I have so experience with Javascript as well if that's involved at all.
Will do. No Javascript needed yet but Ill reach out when that day comes.
And, thanks @kwyn!
Everything is back to normal now!
Most helpful comment
@RichieEscarez I'm guessing this is happening at build time, since the source seems correct?