Karim shoair commited on
Commit
2366c9b
·
1 Parent(s): edd7a2b

Width adjustments

Browse files
docs/stylesheets/extra.css CHANGED
@@ -1,3 +1,3 @@
1
  .md-grid {
2
- max-width: 65%;
3
  }
 
1
  .md-grid {
2
+ max-width: 90%;
3
  }
docs/tutorials/migrating_from_beautifulsoup.md CHANGED
@@ -1,11 +1,5 @@
1
  # Migrating from BeautifulSoup to Scrapling
2
 
3
- <style>
4
- .md-grid {
5
- max-width: 85%;
6
- }
7
- </style>
8
-
9
  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.
10
 
11
  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.
 
1
  # Migrating from BeautifulSoup to Scrapling
2
 
 
 
 
 
 
 
3
  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.
4
 
5
  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.