diff --git a/requests_html.py b/requests_html.py
index 6d36e70..e2fe371 100644
--- a/requests_html.py
+++ b/requests_html.py
@@ -71,11 +71,16 @@ class BaseParser:
@property
def pq(self) -> PyQuery:
- """PyQuery representation of the :class:`Element ` or :class:`HTML `."""
+ """`PyQuery `_ representation
+ of the :class:`Element ` or :class:`HTML `.
+ """
return PyQuery(self.element)
@property
def lxml(self) -> HtmlElement:
+ """`lxml `_ representation of the
+ :class:`Element ` or :class:`HTML `.
+ """
return fromstring(self.html)
@property