diff --git a/cmd/tools/vdoc/html.v b/cmd/tools/vdoc/html.v index 3cb5f5b0b03ee3..e2320d70569487 100644 --- a/cmd/tools/vdoc/html.v +++ b/cmd/tools/vdoc/html.v @@ -17,7 +17,7 @@ const link_svg = '\n') } if deprecated_tags.len > 0 { - attributes := deprecated_tags.map('
${no_quotes(it)}
\n').join('') + attributes := deprecated_tags.map('
${it.replace_each(quote_escape_seq)}
\n').join('') dnw.writeln('
${attributes}
\n') } if tags.len > 0 { @@ -598,10 +598,6 @@ fn write_toc(dn doc.DocNode, mut toc strings.Builder) { toc.writeln('') } -fn no_quotes(s string) string { - return s.replace_each(no_quotes_replacement) -} - struct MdHtmlCodeHighlighter { mut: language string