diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2008-02-10 12:31:40 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2008-02-10 12:31:40 (GMT) |
commit | 95fd5f1c991ee66f7122801276a133ebfce86aaa (patch) | |
tree | b6882cdef0c60182168c8c11e298dcd76cc02bbc /src/cmdmapper.cpp | |
parent | 38c6a14b15d87348076be142abea8663009ace82 (diff) | |
download | Doxygen-95fd5f1c991ee66f7122801276a133ebfce86aaa.zip Doxygen-95fd5f1c991ee66f7122801276a133ebfce86aaa.tar.gz Doxygen-95fd5f1c991ee66f7122801276a133ebfce86aaa.tar.bz2 |
Release-1.5.5
Diffstat (limited to 'src/cmdmapper.cpp')
-rw-r--r-- | src/cmdmapper.cpp | 43 |
1 files changed, 23 insertions, 20 deletions
diff --git a/src/cmdmapper.cpp b/src/cmdmapper.cpp index bca36df..4ad3b38 100644 --- a/src/cmdmapper.cpp +++ b/src/cmdmapper.cpp @@ -91,6 +91,7 @@ CommandMap cmdMap[] = { "version", CMD_VERSION }, { "warning", CMD_WARNING }, { "throws", CMD_EXCEPTION }, + { "tparam", CMD_TPARAM }, { "\\", CMD_BSLASH }, { "@", CMD_AT }, { "<", CMD_LESS }, @@ -154,27 +155,29 @@ CommandMap htmlTagMap[] = { "span", HTML_SPAN }, { "div", HTML_DIV }, - { "c", XML_C }, + { "c", XML_C }, // { "code", XML_CODE }, <= ambigious <code> is also a HTML tag - { "description",XML_DESCRIPTION }, - { "example", XML_EXAMPLE }, - { "exception", XML_EXCEPTION }, - { "include", XML_INCLUDE }, - { "item", XML_ITEM }, - { "list", XML_LIST }, // type="table|bullet|number" - { "listheader", XML_LISTHEADER }, - { "para", XML_PARA }, - { "param", XML_PARAM }, - { "paramref", XML_PARAMREF }, - { "permission", XML_PERMISSION }, - { "remarks", XML_REMARKS }, - { "returns", XML_RETURNS }, - { "see", XML_SEE }, - { "seealso", XML_SEEALSO }, - { "summary", XML_SUMMARY }, - { "term", XML_TERM }, - { "value", XML_VALUE }, - { 0, 0 } + { "description", XML_DESCRIPTION }, + { "example", XML_EXAMPLE }, + { "exception", XML_EXCEPTION }, + { "include", XML_INCLUDE }, + { "item", XML_ITEM }, + { "list", XML_LIST }, // type="table|bullet|number" + { "listheader", XML_LISTHEADER }, + { "para", XML_PARA }, + { "param", XML_PARAM }, + { "paramref", XML_PARAMREF }, + { "typeparam", XML_TYPEPARAM }, + { "typeparamref", XML_TYPEPARAMREF }, + { "permission", XML_PERMISSION }, + { "remarks", XML_REMARKS }, + { "returns", XML_RETURNS }, + { "see", XML_SEE }, + { "seealso", XML_SEEALSO }, + { "summary", XML_SUMMARY }, + { "term", XML_TERM }, + { "value", XML_VALUE }, + { 0, 0 } }; //---------------------------------------------------------------------------- |