Skip to content

Commit d184c0d

Browse files
committed
fix: clarify hierarchy in starlark docs right sidebar
1 parent 432b84e commit d184c0d

File tree

10 files changed

+147
-101
lines changed

10 files changed

+147
-101
lines changed

content/docs/reference/starlark-packages/bsoup.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ parseHtml parses html from a string, returning the root SoupNode
2828

2929
**Methods**
3030

31-
### find
31+
#### find
3232

3333
```
3434
find(name, attrs, recursive, string, **kwargs)
@@ -38,7 +38,7 @@ retrieve the first occurrence of an element that matches arguments passed to fin
3838
works similarly to [node.find()](https://www.crummy.com/software/BeautifulSoup/bs4/doc/#find)
3939

4040

41-
### find_all
41+
#### find_all
4242

4343
```
4444
find_all(name, attrs, recursive, string, limit, **kwargs)
@@ -48,7 +48,7 @@ retrieves all descendants that match arguments passed to find_all.
4848
works similarly to [node.find_all()](https://www.crummy.com/software/BeautifulSoup/bs4/doc/#find-all)
4949

5050

51-
### attrs
51+
#### attrs
5252

5353
```
5454
attrs()
@@ -58,7 +58,7 @@ get a dictionary of element attributes
5858
works similarly to [node.attrs](https://www.crummy.com/software/BeautifulSoup/bs4/doc/#attributes)
5959

6060

61-
### contents
61+
#### contents
6262

6363
```
6464
contents()
@@ -68,7 +68,7 @@ gets the list of children of an element
6868
works similarly to [soup.contents](https://www.crummy.com/software/BeautifulSoup/bs4/doc/#contents-and-children)
6969

7070

71-
### child
71+
#### child
7272

7373
```
7474
child()
@@ -78,7 +78,7 @@ gets a single child element with the given tag name
7878
works like accessing a node [using its tag name](https://www.crummy.com/software/BeautifulSoup/bs4/doc/#navigating-using-tag-names)
7979

8080

81-
### parent
81+
#### parent
8282

8383
```
8484
parent()
@@ -88,7 +88,7 @@ gets the parent node of an element
8888
works like [node.parent](https://www.crummy.com/software/BeautifulSoup/bs4/doc/#parent)
8989

9090

91-
### next_sibling
91+
#### next_sibling
9292

9393
```
9494
next_sibling()
@@ -98,7 +98,7 @@ gets the next sibling of an element
9898
works like [node.next_sibling](https://www.crummy.com/software/BeautifulSoup/bs4/doc/#next-sibling-and-previous-sibling)
9999

100100

101-
### prev_sibling
101+
#### prev_sibling
102102

103103
```
104104
prev_sibling()
@@ -108,7 +108,7 @@ gets the previous sibling of an element
108108
works like [node.prev_sibling](https://www.crummy.com/software/BeautifulSoup/bs4/doc/#next-sibling-and-previous-sibling)
109109

110110

111-
### get_text
111+
#### get_text
112112

113113
```
114114
get_text()

0 commit comments

Comments
 (0)