diff --git a/requests_html.py b/requests_html.py
index ed31e84..6d36e70 100644
--- a/requests_html.py
+++ b/requests_html.py
@@ -36,7 +36,7 @@ class BaseParser:
@property
def raw_html(self):
- """Bytes representation of the HTML content."""
+ """Bytes representation of the HTML content (`learn more `_."""
if self._html:
return self._html
else:
@@ -44,7 +44,7 @@ class BaseParser:
@property
def html(self) -> bytes:
- """Unicode representation of the HTML content."""
+ """Unicode representation of the HTML content (`learn more `_)."""
if self._html:
return self._html.decode(self.encoding)
else: