mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
vfmt: change all '$expr' to '${expr}' (#16428)
This commit is contained in:
@@ -10,40 +10,40 @@ fn markdown_escape_script_tags(str string) string {
|
||||
fn (vd VDoc) gen_markdown(d doc.Doc, with_toc bool) string {
|
||||
mut hw := strings.new_builder(200)
|
||||
mut cw := strings.new_builder(200)
|
||||
hw.writeln('# $d.head.content\n')
|
||||
hw.writeln('# ${d.head.content}\n')
|
||||
if d.head.comments.len > 0 {
|
||||
comments := if vd.cfg.include_examples {
|
||||
d.head.merge_comments()
|
||||
} else {
|
||||
d.head.merge_comments_without_examples()
|
||||
}
|
||||
hw.writeln('$comments\n')
|
||||
hw.writeln('${comments}\n')
|
||||
}
|
||||
if with_toc {
|
||||
hw.writeln('## Contents')
|
||||
}
|
||||
vd.write_markdown_content(d.contents.arr(), mut cw, mut hw, 0, with_toc)
|
||||
footer_text := gen_footer_text(d, !vd.cfg.no_timestamp)
|
||||
cw.writeln('#### $footer_text')
|
||||
cw.writeln('#### ${footer_text}')
|
||||
return hw.str() + '\n' + cw.str()
|
||||
}
|
||||
|
||||
fn (vd VDoc) write_markdown_content(contents []doc.DocNode, mut cw strings.Builder, mut hw strings.Builder, indent int, with_toc bool) {
|
||||
for cn in contents {
|
||||
if with_toc && cn.name.len > 0 {
|
||||
hw.writeln(' '.repeat(2 * indent) + '- [${slug(cn.name)}](#$cn.name)')
|
||||
cw.writeln('## $cn.name')
|
||||
hw.writeln(' '.repeat(2 * indent) + '- [${slug(cn.name)}](#${cn.name})')
|
||||
cw.writeln('## ${cn.name}')
|
||||
}
|
||||
if cn.content.len > 0 {
|
||||
comments := cn.merge_comments_without_examples()
|
||||
cw.writeln('```v\n$cn.content\n```\n$comments\n')
|
||||
cw.writeln('```v\n${cn.content}\n```\n${comments}\n')
|
||||
// Write examples if any found
|
||||
examples := cn.examples()
|
||||
if vd.cfg.include_examples && examples.len > 0 {
|
||||
example_title := if examples.len > 1 { 'Examples' } else { 'Example' }
|
||||
cw.writeln('$example_title\n```v\n')
|
||||
cw.writeln('${example_title}\n```v\n')
|
||||
for example in examples {
|
||||
cw.writeln('$example\n')
|
||||
cw.writeln('${example}\n')
|
||||
}
|
||||
cw.writeln('```\n')
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user