cschlosser / doxdocgen

Generate doxygen documentation from source code in VS Code
https://marketplace.visualstudio.com/items?itemName=cschlosser.doxdocgen
MIT License
264 stars 55 forks source link

VHDL Support #168

Open ingenieriaam opened 4 years ago

ingenieriaam commented 4 years ago

Description

Just as the extension is intended to be used for C and Cpp codes, it is very close to being useful for VHDL codes with only a few small changes at the user level.

Code example

Expected result

in C code, the extension use this:

/**
 * @brief Put the expected comment here
 */

in VHDL it would be like this

--
--! @brief Put the expected comment here
--

I think it would be enough to do a class called vhdl, but I am not an expert. Is it possible to do this update? The extension is really very useful.

cschlosser commented 4 years ago

You will have to implement a parser for vhdl. It is possible but I'm not an expert in the VHDL language at all.