Hi Doug,
Make sure MARKDOWN_SUPPORT is enabled in the config file and use valid markdown syntax, e.g.:
/**
* A class for fails
* | This Rule Name | Element or Terminal |
* | -------------: | :------------------ |
* | left-text = | |
* | | right-text1 |
* | | right-text2 |
* | | right-text3 |
* | | right-text4 |
* | | right-text5 |
*
*/
class fails
{
};
Note that the @class command is redundant and that the number of |'s is important and should be the same for each line.
Regards,
Dimitri
On 21 Sep 2014, at 17:03 , Doug Royer <dou...@gm...> wrote:
>
> In HTML, the tables produces inline text:
>
> A class for fails This Rule Name | Element or Terminal | ---—: | :—: | :--— | | left-text | = | | | | right-text1 | | |
> right-text2 | | | right-text3 | | | right-text4 | | right-text5 |
>
> Using doxygen 1.8.6
>
> Did a 'doxygen -g' and used a fresh Doxyfile.
>
> The source:
>
> /**
> * @class fails
> * A class for fails
> * This Rule Name | Element or Terminal
> * | ------: | :---: | :----- |
> * | left-text | = | |
> * | | right-text1 |
> * | | right-text2 |
> * | | right-text3 |
> * | | right-text4
> * | | right-text5 |
> *
> */
> class fails
> {
>
> public:
> /**
> * fails - constructor
> */
> fails();
>
> /**
> * fails - destructor
> */
> virtual ~fails();
> };
>
> --
>
> Doug Royer - (http://DougRoyer.US)
> Dou...@gm...
> 714-989-6135
>
>
> ------------------------------------------------------------------------------
> Slashdot TV. Video for Nerds. Stuff that Matters.
> http://pubads.g.doubleclick.net/gampad/clk?id=160591471&iu=/4140/ostg.clktrk_______________________________________________
> Doxygen-users mailing list
> Dox...@li...
> https://lists.sourceforge.net/lists/listinfo/doxygen-users
|