doxypypy icon indicating copy to clipboard operation
doxypypy copied to clipboard

Multiline docstring blocks not correctly stripped with INLINE_SOURCES

Open overlord624 opened this issue 8 years ago • 0 comments

When filtering multiline docstrings, the line containing the terminating sequence (""") is included in the generated code fragments from the Doxygen option INLINE_SOURCES. This results in incorrect syntax highlighting.

For example:

def f():
   """
   arbitrary text
   """
   do_stuff()

Will output the following code with the documentation of the function

  """
  do_stuff()

overlord624 avatar Jul 03 '16 17:07 overlord624