@@ -28,7 +28,7 @@ parseHtml parses html from a string, returning the root SoupNode
28
28
29
29
** Methods**
30
30
31
- ### find
31
+ #### find
32
32
33
33
```
34
34
find(name, attrs, recursive, string, **kwargs)
@@ -38,7 +38,7 @@ retrieve the first occurrence of an element that matches arguments passed to fin
38
38
works similarly to [ node.find()] ( https://www.crummy.com/software/BeautifulSoup/bs4/doc/#find )
39
39
40
40
41
- ### find_all
41
+ #### find_all
42
42
43
43
```
44
44
find_all(name, attrs, recursive, string, limit, **kwargs)
@@ -48,7 +48,7 @@ retrieves all descendants that match arguments passed to find_all.
48
48
works similarly to [ node.find_all()] ( https://www.crummy.com/software/BeautifulSoup/bs4/doc/#find-all )
49
49
50
50
51
- ### attrs
51
+ #### attrs
52
52
53
53
```
54
54
attrs()
@@ -58,7 +58,7 @@ get a dictionary of element attributes
58
58
works similarly to [ node.attrs] ( https://www.crummy.com/software/BeautifulSoup/bs4/doc/#attributes )
59
59
60
60
61
- ### contents
61
+ #### contents
62
62
63
63
```
64
64
contents()
@@ -68,7 +68,7 @@ gets the list of children of an element
68
68
works similarly to [ soup.contents] ( https://www.crummy.com/software/BeautifulSoup/bs4/doc/#contents-and-children )
69
69
70
70
71
- ### child
71
+ #### child
72
72
73
73
```
74
74
child()
@@ -78,7 +78,7 @@ gets a single child element with the given tag name
78
78
works like accessing a node [ using its tag name] ( https://www.crummy.com/software/BeautifulSoup/bs4/doc/#navigating-using-tag-names )
79
79
80
80
81
- ### parent
81
+ #### parent
82
82
83
83
```
84
84
parent()
@@ -88,7 +88,7 @@ gets the parent node of an element
88
88
works like [ node.parent] ( https://www.crummy.com/software/BeautifulSoup/bs4/doc/#parent )
89
89
90
90
91
- ### next_sibling
91
+ #### next_sibling
92
92
93
93
```
94
94
next_sibling()
@@ -98,7 +98,7 @@ gets the next sibling of an element
98
98
works like [ node.next_sibling] ( https://www.crummy.com/software/BeautifulSoup/bs4/doc/#next-sibling-and-previous-sibling )
99
99
100
100
101
- ### prev_sibling
101
+ #### prev_sibling
102
102
103
103
```
104
104
prev_sibling()
@@ -108,7 +108,7 @@ gets the previous sibling of an element
108
108
works like [ node.prev_sibling] ( https://www.crummy.com/software/BeautifulSoup/bs4/doc/#next-sibling-and-previous-sibling )
109
109
110
110
111
- ### get_text
111
+ #### get_text
112
112
113
113
```
114
114
get_text()
0 commit comments