We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a9ff6f5 + ae94cd2 commit 6186568Copy full SHA for 6186568
src/pages/_utils.ts
@@ -230,9 +230,7 @@ export const getRefEntryTitleConcatWithParen = (
230
*/
231
export const escapeCodeTagsContent = (htmlString: string): string => {
232
// Load the HTML string into Cheerio
233
- const $ = load(htmlString, {
234
- xmlMode: true
235
- });
+ const $ = load(htmlString);
236
// Loop through all <code> tags
237
$("code").each(function () {
238
// Don't escape code in multiline blocks, as these will already
0 commit comments