From 7cd449d920892f01d465f1202491643eaef558b7 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 27 Feb 2018 20:25:27 -0500 Subject: [PATCH] learn more Signed-off-by: Kenneth Reitz --- requests_html.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: