You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
xyz - should be in the middle a small script <script>console.log('hello');</script> bold text <b>bold</b> end underlined text <u>underline</u> end a link [main v repo](https://github.com/vlang/v)
Copy file name to clipboardExpand all lines: cmd/tools/vdoc/tests/testdata/output_formats/main.html
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
<sectionid="readme_main" class="doc-node">
2
-
<divclass="title"><h1> main <ahref="#readme_main">#</a></h1></div><h2>Description:</h2><p>This is an example of a an .md file, used for adding more rich text documentation in a project or module.</p><p>This is a <ahref="https://vlang.io/">link</a> to the main V site.</p><h2>Examples:</h2><h3>Processing command line args:</h3><pre><codeclass="language-v"><spanclass="token keyword">import</span> os
2
+
<divclass="title"><h1> main <ahref="#readme_main">#</a></h1></div><h2>Description:</h2><p>This is an example of a an .md file, used for adding more rich text documentation in a project or module.</p><p>This is a <ahref="https://vlang.io/">link</a> to the main V site.</p><p>This is a <b>bold text</b>.</p><p>This is a script <code>console.log('hi from README.md');</code> .</p><h2>Examples:</h2><h3>Processing command line args:</h3><pre><codeclass="language-v"><spanclass="token keyword">import</span> os
<p>xyz - should be in the middle a small script <script>console.log('hello');</script> bold text <b>bold</b> end underlined text <u>underline</u> end a link <ahref="https://github.com/vlang/v">main v repo</a></p>
Copy file name to clipboardExpand all lines: cmd/tools/vdoc/tests/testdata/output_formats/main.text
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@ module main
6
6
7
7
This is a [link](https://vlang.io/) to the main V site.
8
8
9
+
This is a <b>bold text</b>.
10
+
11
+
This is a script <script>console.log('hi from README.md');</script> .
12
+
9
13
## Examples:
10
14
11
15
### Processing command line args:
@@ -76,7 +80,7 @@ fn abc()
76
80
fn def()
77
81
def - should be first
78
82
fn xyz()
79
-
xyz - should be in the middle
83
+
xyz - should be in the middle a small script <script>console.log('hello');</script> bold text <b>bold</b> end underlined text <u>underline</u> end a link [main v repo](https://github.com/vlang/v)
80
84
fn MyXMLDocument.abc(text string) ?(string, int)
81
85
MyXMLDocument.abc does something too... I just do not know what.
0 commit comments