Skip to content

Commit 54c4890

Browse files
committed
update doc code format
1 parent de15a64 commit 54c4890

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,19 @@ dependencies {
3838
###extract single data
3939

4040
````java
41-
String followers = Extractors.on(baseHtml)
42-
.extract(new SelectorExtractor("div.followers"))
43-
.with(new RegexExtractor("\\d+"))
44-
.asString();
41+
String followers = Extractors.on(baseHtml)
42+
.extract(new SelectorExtractor("div.followers"))
43+
.with(new RegexExtractor("\\d+"))
44+
.asString();
4545
````
4646

4747
or use static method
4848

4949
````java
50-
String followers = Extractors.on(baseHtml)
51-
.extract(selector("div.followers"))
52-
.with(regex("\\d+"))
53-
.asString();
50+
String followers = Extractors.on(baseHtml)
51+
.extract(selector("div.followers"))
52+
.with(regex("\\d+"))
53+
.asString();
5454
````
5555
more method
5656

0 commit comments

Comments
 (0)