Re: [PATCH 8/8] docs: kernel-doc: Don't mangle literal code blocks in comments

From: Markus Heiser
Date: Wed Feb 14 2018 - 11:53:18 EST



> Am 07.02.2018 um 18:26 schrieb Jonathan Corbet <corbet@xxxxxxx>:
>
> It can be useful to put code snippets into kerneldoc comments; that can be
> done with the "::" operator at the end of a line like this::
>
> if (desperate)
> run_in_circles();
>
> kernel-doc currently fails to understand these literal blocks and applies
> its normal markup to them, which is then treated as literal by sphinx. The
> result is unsightly markup instead of a useful code snippet.
>
> Apply a hack to the output code to recognize literal blocks and avoid
> performing any special markup on them. It's ugly, but that means it fits
> in well with the rest of the script.
>
> Signed-off-by: Jonathan Corbet <corbet@xxxxxxx>


[...]

FYI; added similar patch to python version of kernel-doc:

https://github.com/return42/linuxdoc/commit/3205b8a68

may you like to add regexpr for code-block directive to your patch (jani mentioned already).

-- Markus --