Skip to content

Commit b869ccc

Browse files
author
bors-servo
authored
Auto merge of #279 - waywardmonkeys:patch-1, r=KiChjang
Fix section header formatting. Without the space in there, this doesn't show up as nicely on GitHub. <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/html5ever/279) <!-- Reviewable:end -->
2 parents 6fcbe18 + b1d61df commit b869ccc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

xml5ever/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ xml5ever is based largely on [html5ever](https://github.com/servo/html5ever) par
1414

1515
The library is dual licensed under MIT and Apache license.
1616

17-
#Why you should use xml5ever
17+
# Why you should use xml5ever
1818

1919
Main use case for this library is when XML is badly formatted, usually from bad XML
2020
templates. XML5 tries to handle most common errors, in a manner similar to HTML5.
@@ -32,7 +32,7 @@ templates. XML5 tries to handle most common errors, in a manner similar to HTML5
3232
- You require an easy to use parser, with lots of extensions (e.g. XPath, XQuery).
3333
- You require a battle tested, industry proven solution.
3434

35-
#Installation
35+
# Installation
3636

3737
Add xml5ever as a dependency in your project manifest.
3838

@@ -47,7 +47,7 @@ And add crate declaration in your lib.rs
4747
extern crate xml5ever
4848
```
4949

50-
#Getting started
50+
# Getting started
5151

5252
Here is a very simple RcDom backed parser:
5353

@@ -64,7 +64,7 @@ Here is a very simple RcDom backed parser:
6464
```
6565
The thing that does actual parsing is the `parse` function. It expects an iterator that can be converted into `StrTendril`, so you can use `std::iter::once(input)` or `Some(input).into_iter()` (where `input` is `StrTendril` like structure).
6666

67-
#Working on xml5ever
67+
# Working on xml5ever
6868

6969
To build examples and tests you need to do something along the lines of:
7070

@@ -78,7 +78,7 @@ This will fetch tests from outside repository and it will invoke cargo to
7878
build and test the crate. If you need docs checkout either [API docs](https://ygg01.github.io/docs/xml5ever/xml5ever/index.html) or run `cargo docs`
7979
to generate documentation.
8080

81-
##Easy first tasks
81+
## Easy first tasks
8282

8383
What I generally recommend is to look at Clippy Linting badge results and create
8484
a PR for fixing the said lints. Other than that try to look for any tasks labeled

0 commit comments

Comments
 (0)