[Doxygen-users] inlining code remove spaces and braces
Brought to you by:
dimitri
From: Philipp K. <phi...@fl...> - 2015-01-11 16:13:29
|
Hello, I’m using inline code in my HTML documentation with Doxygen 1.8.9. The Java code shows e.g.: public void someMethod() { System.out.println(„test“); } The inline code starts with { and inserts the spaces bevor the System.out call. How can I remove the { without reformatting my code and the spaces before the System.out call, I would like to show the inline code like this <line nr> System.out.println(„test“); and not <line nr> { <line nr> System.out.println(„test“); Thanks Phil |