How do I link between markdown documents in doxygen?

后端 未结 4 1096
走了就别回头了
走了就别回头了 2020-12-15 03:42

I have a project with a set of markdown pages that are interlinked with links such as

[Go to this page](subdir/MyOtherPage.md)

The pages al

4条回答
  •  时光取名叫无心
    2020-12-15 04:16

    Regular-old Markdown links are handled as of Doxygen 1.8.6, e.g. [link text](docs/page.md). This works a little wonky, though-- the URL must be relative from the Doxygen working directory (i.e. not the directory of the Doxyfile or the .md file, but the directory from which Doxygen is RUN). If you notice that clicking the link shows raw Markdown instead of rendered HTML, it means your URL is not relative from Doxygen's working directory.

提交回复
热议问题