From eb1d47b8c694a7eaf9ce5707777865771f5d3965 Mon Sep 17 00:00:00 2001 From: JalonSolov Date: Sun, 26 Apr 2026 11:09:46 -0400 Subject: [PATCH] tests: fix vdoc output tests --- cmd/tools/vdoc/testdata/output_formats/main.ansi | 4 +++- cmd/tools/vdoc/testdata/output_formats/main.text | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/cmd/tools/vdoc/testdata/output_formats/main.ansi b/cmd/tools/vdoc/testdata/output_formats/main.ansi index d1afa9ea5..86320ee5c 100644 --- a/cmd/tools/vdoc/testdata/output_formats/main.ansi +++ b/cmd/tools/vdoc/testdata/output_formats/main.ansi @@ -159,7 +159,8 @@ The End. module main ## Description - This is an example of a an .md file, used for adding more rich text documentation in a project or module. + This is an example of a an .md file, used for adding more rich text + documentation in a project or module. This is a [link](https://vlang.io/) to the main V site. @@ -345,6 +346,7 @@ The End. ``` The End. + const omega = 3 // should be first const alpha = 5 // should be in the middle diff --git a/cmd/tools/vdoc/testdata/output_formats/main.text b/cmd/tools/vdoc/testdata/output_formats/main.text index 9332bcffe..896686b71 100644 --- a/cmd/tools/vdoc/testdata/output_formats/main.text +++ b/cmd/tools/vdoc/testdata/output_formats/main.text @@ -1,7 +1,8 @@ module main ## Description - This is an example of a an .md file, used for adding more rich text documentation in a project or module. + This is an example of a an .md file, used for adding more rich text + documentation in a project or module. This is a [link](https://vlang.io/) to the main V site. @@ -187,6 +188,7 @@ module main ``` The End. + const omega = 3 // should be first const alpha = 5 // should be in the middle -- 2.39.5