[PATCH] D60964: [docs] Add support for Markdown documentation when creating man pages

James Henderson via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 29 07:05:20 PDT 2019


jhenderson added inline comments.


================
Comment at: docs/conf.py:235-238
+            print((
+                ("error: invalid title in %r "
+                 "(expected '# <name> - <description>')") % (
+                    file_subpath,)), file=sys.stderr)
----------------
There seems to be an excessive number of brackets to me here. Can this be simplified slightly to something like (with one or two line breaks in other places as required):

```print(
  "error: invalid title in %r (expected '# <name> - <description>')" % file_subpath,
  file=sys.stderr)```


Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D60964/new/

https://reviews.llvm.org/D60964





More information about the llvm-commits mailing list