blob: 36b778af6b01f1d8a8713968335d5ab145a62835 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
## my heading
## ==========
##
## .. importdoc:: sub/submodule.nim, ../util.nim, doc/manual.md
##
## .. See also [Second&&&] and particularly [first section] and [Second section &].
##
## See also [module nimdoc/extlinks/util] or [nimdoc/extlinks/project/sub/submodule module].
##
## Ref. [`</a>` proc].
##
## Ref. [First section] or [Second section &] from [Nothing User Manual].
import ../util, sub/submodule
type A* = object
x: int
proc mainfunction*(): int =
# just to suppress "not used" warnings:
if `</a>`(1, 2):
result = utilfunction(0)
|