diff options
author | Alwin Esch <alwin.esch@web.de> | 2016-04-20 13:46:55 +0200 |
---|---|---|
committer | Alwin Esch <alwin.esch@web.de> | 2016-04-20 13:46:55 +0200 |
commit | 6531244aa0450bf110f54a25bbf4bafd00810256 (patch) | |
tree | c4089923d893e6dded58d63c22323ba2f33ede73 /doxygen_resources/Doxyfile.doxy | |
parent | a1ede5480897b1efed94b3b090ada08114ef68cb (diff) |
Fix kodi's global doxygen with add of missing macros
Diffstat (limited to 'doxygen_resources/Doxyfile.doxy')
-rw-r--r-- | doxygen_resources/Doxyfile.doxy | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/doxygen_resources/Doxyfile.doxy b/doxygen_resources/Doxyfile.doxy index e1a3d0c2c8..70d3dc4994 100644 --- a/doxygen_resources/Doxyfile.doxy +++ b/doxygen_resources/Doxyfile.doxy @@ -238,7 +238,14 @@ TAB_SIZE = 2 # "Side Effects:". You can put \n's in the value part of an alias to insert # newlines. -ALIASES = +ALIASES = "table_start=<table width= 100% style= border bgcolor= 576f9f border= 0>" \ + "table_end=</table>" \ + "table_h2_l{2}=<tr bgcolor= 576f9f><th width= 40% align=left>\1</th><th width= 60% align=left>\2</th></tr>" \ + "table_row2_l{2}=<tr bgcolor=white><td width= 40% align=left>\1</td><td width= 60% align=left>\2</td></tr>" \ + "table_h3{3}=<tr bgcolor= 576f9f><th width= 30% align=left>\1</th><th width= 10% align=left>\2</th><th width= 60% align=left>\3</th></tr>" \ + "table_row3{3}=<tr bgcolor=white><td width= 30% align=left>\1</td><td width= 10% align=left>\2</td><td width= 60% align=left>\3</td></tr>" \ + "python_func{1}=\htmlonly <h4><code><span style=\"font-style: italic;\">Function: </span><span style=\"font-style: bold;\"><font color=31363b><big>\1</big></font></span></code></h4> \endhtmlonly" \ + "python_class{1}=\htmlonly <h4><code><span style=\"font-style: italic;\">Class: </span><span style=\"font-style: bold;\"><font color=31363b><big>\1</big></font></span></code></h4> \endhtmlonly" # This tag can be used to specify a number of word-keyword mappings (TCL only). # A mapping has the form "name=value". For example adding "class=itcl::class" |