diff options
author | Jani Nikula <jani.nikula@intel.com> | 2016-05-26 10:15:18 +0300 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2016-05-30 13:38:53 +0300 |
commit | 2e83ecb834ca923806fd58fab17d9f405767e1d9 (patch) | |
tree | e9b9e9bec7b49b6a19c2db88829d0ecda9bf4cd1 /Documentation/sphinx | |
parent | 89a66d76109935aad387a5058f120aeb8246ae40 (diff) | |
download | linux-stable-2e83ecb834ca923806fd58fab17d9f405767e1d9.tar.gz linux-stable-2e83ecb834ca923806fd58fab17d9f405767e1d9.tar.bz2 linux-stable-2e83ecb834ca923806fd58fab17d9f405767e1d9.zip |
sphinx: update docbook->rst conversion script match C domain spec
Function references should include the parens (), struct references
should not include "struct".
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Diffstat (limited to 'Documentation/sphinx')
-rw-r--r-- | Documentation/sphinx/convert_template.sed | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/sphinx/convert_template.sed b/Documentation/sphinx/convert_template.sed index d53bb8220a26..0553eabeac79 100644 --- a/Documentation/sphinx/convert_template.sed +++ b/Documentation/sphinx/convert_template.sed @@ -4,10 +4,10 @@ # # Use "$bq" instead of "`" so that pandoc won't mess with it. # -s%<function>\([^<(]\+\)()</function>%:c:func:$bq\1$bq%g -s%<function>\([^<(]\+\)</function>%:c:func:$bq\1$bq%g -s%<structname>struct *\([^<]\+\)</structname>%:ref:$bqstruct \1$bq%g -s%<structname>\([^<]\+\)</structname>%:ref:$bqstruct \1$bq%g +s%<function>\([^<(]\+\)()</function>%:c:func:$bq\1()$bq%g +s%<function>\([^<(]\+\)</function>%:c:func:$bq\1()$bq%g +s%<structname>struct *\([^<]\+\)</structname>%:c:type:$bq\1$bq%g +s%<structname>\([^<]\+\)</structname>%:c:type:$bq\1$bq%g # # Wrap docproc directives in para and code blocks. # |