From e4370778f069a9274a6092a081a2facf07d0a32f Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Tue, 8 Apr 2025 21:42:26 +0200 Subject: [PATCH] Width adjustments --- docs/stylesheets/extra.css | 2 +- docs/tutorials/migrating_from_beautifulsoup.md | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 2b74dcf..09f1a20 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -1,3 +1,3 @@ .md-grid { - max-width: 65%; + max-width: 90%; } \ No newline at end of file diff --git a/docs/tutorials/migrating_from_beautifulsoup.md b/docs/tutorials/migrating_from_beautifulsoup.md index 77a5516..15554d9 100644 --- a/docs/tutorials/migrating_from_beautifulsoup.md +++ b/docs/tutorials/migrating_from_beautifulsoup.md @@ -1,11 +1,5 @@ # Migrating from BeautifulSoup to Scrapling - - If you're already familiar with BeautifulSoup, you're in for a treat. Scrapling is faster, provides similar parsing capabilities, and adds powerful new features for fetching and handling modern web pages. This guide will help you quickly adapt your existing BeautifulSoup code to take advantage of Scrapling's capabilities. Below is a table that covers the most common operations you'll perform when scraping web pages. Each row shows how to accomplish a specific task in BeautifulSoup and the corresponding way to do it in Scrapling.