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

Fangrui Song via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed May 1 04:54:59 PDT 2019


MaskRay added inline comments.


================
Comment at: docs/conf.py:267
+    # Process ReST files apart from the index page.
+    elif name.endswith('.rst') and not name in ('index.rst',):
+        process_rst(name)
----------------
`not name in ('index.rst',)` -> `name != 'index.rst'`


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

https://reviews.llvm.org/D60964





More information about the llvm-commits mailing list