cschlosser / doxdocgen

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

Individual function header #334

Open KueWW opened 1 month ago

KueWW commented 1 month ago

Description

I would like to individualize the file and the functions heading. The file heading works just fine. The function heading don't.

Is it possible to tabify entries?

Code example

#include<stdio.h>

int main() {
    printf("Hello World\n");
    return 0;
}

Expected result

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///
/// \file   main.c
/// \author     John Doe (John Doe@mail.com)
/// \brief  main module.
/// \version 0.1
/// \date   2024-05-04
///
///@copyright Copyright (c) 2024
///
///

#include<stdio.h>

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///
/// \brief 
/// \return 
///
int main() {
    printf("Hello World\n");
    return 0;
}

Actual result


///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///
///\file    main.c
///\author  John Doe (John Doe@mail.com)
///\brief   main module.
///\version 0.1
///\date    2024-05-04
///
///@copyright Copyright (c) 2024
///
///

#include<stdio.h>

/// @brief 
/// @return 
int main() {
    printf("Hello World\n");
    return 0;
}```