Skip to content

Commit c3c4e8f

Browse files
committed
Update README.md
1 parent bcd3b44 commit c3c4e8f

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

README.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ X.Web.Sitemap is a library for generating and managing sitemaps in .NET applicat
88

99
## Usage example
1010

11-
Below is an example of basic usage in a non-testable manner
11+
### Sitemap usage example
12+
Below is an example of basic usage:
1213

1314
```cs
1415
class Program
@@ -20,7 +21,7 @@ Below is an example of basic usage in a non-testable manner
2021
sitemap.Add(new Url
2122
{
2223
ChangeFrequency = ChangeFrequency.Hourly,
23-
Location = "http://www.example.com",
24+
Location = "https://www.example.com",
2425
Priority = 0.8,
2526
TimeStamp = DateTime.Now
2627
});
@@ -57,7 +58,8 @@ Below is an example of basic usage in a non-testable manner
5758
}
5859
```
5960

60-
Below is a more comprehensive example that demonstrates how to create many sitemaps and how to add them to a sitemap index file in a unit-testable fashion.
61+
### SitemapGenerator usage example
62+
Below is a more comprehensive example that demonstrates how to create multiple sitemaps and how to add them to a sitemap index file.
6163

6264
```cs
6365
public class SitemapGenerationWithSitemapIndexExample
@@ -155,3 +157,11 @@ Below is a more comprehensive example that demonstrates how to create many sitem
155157
}
156158
}
157159
```
160+
161+
---
162+
163+
## Contributing
164+
Contributions to the `X.Web.Sitemap` library are welcome. Please ensure to follow the contributing guidelines specified in the repository for submitting issues, feature requests, or pull requests.
165+
166+
## License
167+
The `X.Web.Sitemap` library is released under [MIT license](https://raw.githubusercontent.com/a-gubskiy/X.Web.Sitemap/master/LICENSE.md).

0 commit comments

Comments
 (0)