{subsection: Building and previewing the manual locally}
 
 *:: The manual pages exist in our git repository under the /docs folder
+*:: Each top-level section of the manual has a corresponding subdirectory with the same name. For example, all the content for "Overview" is under /docs/overview, the content for "User's Manual" is under /docs/users-manual, and so on.
+*:: Each page of the manual has a corresponding file with the same name and a .rst extension. For example, the content for the "Overview > Exceptional Features" page is in /docs/overview/exceptional-features.rst
+*:: To make a local build of the manual, go to your /docs folder and run:
+{code}
+make html
+{endcode}
+*:: To preview your build, open a web browser and go to the following URL:
+file:///<path-to-condor-src>/docs/_build/html/index.html
+*:: To clean your local build, go to your /docs folder and run:
+{code}
+make clean
+{endcode}