1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

v doc: small clean of Return to contents markdown link

This commit is contained in:
Delyan Angelov 2021-07-27 12:37:40 +03:00
parent 6e0c9f637d
commit 90b9b9d755
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -47,7 +47,8 @@ fn (vd VDoc) write_markdown_content(contents []doc.DocNode, mut cw strings.Build
} }
cw.writeln('```\n') cw.writeln('```\n')
} }
cw.writeln('[\[Return to contents\]](#Contents)\n') cw.writeln(r'[[Return to contents]](#Contents)')
cw.writeln('')
} }
vd.write_markdown_content(cn.children, mut cw, mut hw, indent + 1, with_toc) vd.write_markdown_content(cn.children, mut cw, mut hw, indent + 1, with_toc)
} }