princjef / gomarkdoc

Generate markdown documentation for Go (golang) code
MIT License
380 stars 60 forks source link

Relative link #112

Open MaurGi opened 8 months ago

MaurGi commented 8 months ago

I want to generate a relaitive link in the doc to a yaml file that is in the repo istelf.

In md I would do:

see example: [filename.yaml](./path-to-yaml.yml)

but if I do this with the doc I get:

golang:

// see example: [filename.yaml](./path-to-yaml.yml)

output using gomarkdoc --output test.md . --format azure-devops

see example: \[filename.yaml\]\(./path\-to\-yaml.yml\)

I tried several variants of this but nothing I tried works.

thx