Use reST inline markup in PyDocConverter instead of Markdown.
reST is standard Python markup, so use *...*, ``...`` and so on instead of _..._, '...' etc. No other changes even though the mapping of some Doxygen tags to markup used for them seems suspicions (e.g. \var almost certainly should be the same as \em).
This commit is contained in:
parent
b374aad0da
commit
7d2743a0bb
5 changed files with 60 additions and 60 deletions
|
|
@ -30,13 +30,13 @@ commentVerifier.check(doxygen_basic_translate.function3.__doc__,
|
|||
Overload 1:
|
||||
----------------------------------------------------------------
|
||||
A test for overloaded functions
|
||||
This is function __one__
|
||||
This is function **one**
|
||||
|
||||
----------------------------------------------------------------
|
||||
Overload 2:
|
||||
----------------------------------------------------------------
|
||||
A test for overloaded functions
|
||||
This is function __two__
|
||||
This is function **two**
|
||||
|
||||
"""
|
||||
)
|
||||
|
|
@ -44,11 +44,11 @@ commentVerifier.check(doxygen_basic_translate.function4.__doc__,
|
|||
"""
|
||||
A test of some mixed tag usage
|
||||
If: CONDITION {
|
||||
This _code_ fragment shows us something .
|
||||
This *code* fragment shows us something .
|
||||
Title: Minuses:
|
||||
-it\'s senseless
|
||||
-it\'s stupid
|
||||
-it\'s null
|
||||
* it\'s senseless
|
||||
* it\'s stupid
|
||||
* it\'s null
|
||||
|
||||
Warning: This may not work as expected
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue