feronjb
feronjb

Reputation: 355

How to enable markdown support in Doxygen and keep original file extensions?

I would like to keep the documentation in my code as readable as possible but I also want to automatically generate documentation with Doxygen.

I then want to write the documentation in my code with Markdown syntax but I don't find how to add the Markdown support in Doxygen.

This page doesn't explain how to add the support and MARKDOWN_SUPPORT = YES in the Doxyfile doesn't have any effect.

I am using Ubuntu 12.04 and Doxygen 1.7.

EDIT 1 :

EDIT 2 :

Upvotes: 0

Views: 4424

Answers (1)

feronjb
feronjb

Reputation: 355

I realized that I was not using Doxygen 1.8.5 as I initially thought but Doxygen 1.7 instead. Doxygen 1.7 (provided in the Ubuntu repositories) doesn't automatically support Markdown while Doxygen 1.8.5 does.

I then had to install Doxygen 1.8.5 manually (64 bits version here) and solved installation problems using this solution.

Markdown is now supported natively by Doxygen.

Upvotes: 3

Related Questions