diff --git a/docs/intro/overview.rst b/docs/intro/overview.rst index 820581457..595e85e28 100644 --- a/docs/intro/overview.rst +++ b/docs/intro/overview.rst @@ -157,9 +157,9 @@ scraping easy and efficient, such as: crawler * Plus other goodies like reusable spiders to crawl sites from `Sitemaps`_ and - XML/CSV feeds, a media pipeline for :ref:`automatically downloading images ` - (or any other media) associated with the scraped items, a caching DNS resolver, - and much more! + XML/CSV feeds, a media pipeline for :ref:`automatically downloading images + ` (or any other media) associated with the scraped + items, a caching DNS resolver, and much more! What's next? ============ diff --git a/docs/topics/djangoitem.rst b/docs/topics/djangoitem.rst index ae40401a7..d7b86492d 100644 --- a/docs/topics/djangoitem.rst +++ b/docs/topics/djangoitem.rst @@ -1,3 +1,5 @@ +:orphan: + .. _topics-djangoitem: ========== diff --git a/docs/topics/loaders.rst b/docs/topics/loaders.rst index 4c24166e6..8841711ea 100644 --- a/docs/topics/loaders.rst +++ b/docs/topics/loaders.rst @@ -566,7 +566,7 @@ Here is a list of all built-in processors: The simplest processor, which doesn't do anything. It returns the original values unchanged. It doesn't receive any constructor arguments, nor does it - accept Loader contexts. + accept Loader contexts. Example:: diff --git a/docs/topics/media-pipeline.rst b/docs/topics/media-pipeline.rst index c18ed25ae..4e8562cac 100644 --- a/docs/topics/media-pipeline.rst +++ b/docs/topics/media-pipeline.rst @@ -165,7 +165,7 @@ Will be downloaded and stored in the following file:: Where: * ```` is the directory defined in :setting:`IMAGES_STORE` setting -for the Images Pipeline. + for the Images Pipeline. * ``full`` is a sub-directory to separate full images from thumbnails (if used). For more info see :ref:`topics-images-thumbnails`. diff --git a/docs/topics/scrapyd.rst b/docs/topics/scrapyd.rst index 85d27a99e..57921b901 100644 --- a/docs/topics/scrapyd.rst +++ b/docs/topics/scrapyd.rst @@ -1,3 +1,5 @@ +:orphan: + .. _topics-scrapyd: ======= diff --git a/docs/topics/selectors.rst b/docs/topics/selectors.rst index 231119f3b..0d82494a4 100644 --- a/docs/topics/selectors.rst +++ b/docs/topics/selectors.rst @@ -479,7 +479,7 @@ But using the ``.`` to mean the node, works:: .. _`XPath string function`: http://www.w3.org/TR/xpath/#section-String-Functions Beware of the difference between //node[1] and (//node)[1] -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ``//node[1]`` selects all the nodes occurring first under their respective parents.