mirror of https://github.com/scrapy/scrapy.git
DOC cleanup references in tutorials:
* remove unused link * fix ReST syntax * fix a link to regular expression docs
This commit is contained in:
parent
09fd6c2a81
commit
2c48d156db
|
|
@ -288,7 +288,7 @@ to be scraped, you can at least get **some** data.
|
|||
Besides the :meth:`~scrapy.selector.Selector.extract` and
|
||||
:meth:`~scrapy.selector.SelectorList.get` methods, you can also use
|
||||
the :meth:`~scrapy.selector.Selector.re` method to extract using `regular
|
||||
expressions`::
|
||||
expressions`_::
|
||||
|
||||
>>> response.css('title::text').re(r'Quotes.*')
|
||||
['Quotes to Scrape']
|
||||
|
|
@ -740,4 +740,3 @@ modeling the scraped data. If you prefer to play with an example project, check
|
|||
the :ref:`intro-examples` section.
|
||||
|
||||
.. _JSON: https://en.wikipedia.org/wiki/JSON
|
||||
.. _dirbot: https://github.com/scrapy/dirbot
|
||||
|
|
|
|||
|
|
@ -251,7 +251,7 @@ that Scrapy (parsel) implements a couple of **non-standard pseudo-elements**:
|
|||
.. warning::
|
||||
These pseudo-elements are Scrapy-/Parsel-specific.
|
||||
They will most probably not work with other libraries like
|
||||
`lxml`_ or `PyQuery`_.
|
||||
`lxml`_ or `PyQuery`_.
|
||||
|
||||
.. _PyQuery: https://pypi.python.org/pypi/pyquery
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue