Skip to content

Commit 67d3331

Browse files
committed
doc: readme clean up
1 parent f52cafd commit 67d3331

File tree

3 files changed

+36
-20
lines changed

3 files changed

+36
-20
lines changed

LICENSE.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Harlan Wilton
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+26-19
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,20 @@
1-
<h1 align='center'>@nuxtjs/sitemap</h1>
1+
<h1>@nuxtjs/sitemap</h1>
22

3-
<p align="center">
4-
<a href='https://github.com/nuxt-modules/sitemap/actions/workflows/test.yml'>
5-
</a>
6-
<a href="https://www.npmjs.com/package/@nuxtjs/sitemap" target="__blank"><img src="https://img.shields.io/npm/v/@nuxtjs/sitemap?style=flat&colorA=002438&colorB=28CF8D" alt="NPM version"></a>
7-
<a href="https://www.npmjs.com/package/@nuxtjs/sitemap" target="__blank"><img alt="NPM Downloads" src="https://img.shields.io/npm/dm/@nuxtjs/sitemap?flat&colorA=002438&colorB=28CF8D"></a>
8-
<a href="https://github.com/nuxt-modules/sitemap" target="__blank"><img alt="GitHub stars" src="https://img.shields.io/github/stars/nuxt-modules/sitemap?flat&colorA=002438&colorB=28CF8D"></a>
9-
</p>
3+
[![npm version][npm-version-src]][npm-version-href]
4+
[![npm downloads][npm-downloads-src]][npm-downloads-href]
5+
[![License][license-src]][license-href]
6+
[![Nuxt][nuxt-src]][nuxt-href]
107

11-
<p align="center">
12-
Powerfully flexible XML Sitemaps that integrate seamlessly, for Nuxt. Previously <i>nuxt-simple-sitemap</i>.
13-
</p>
8+
Nuxt Sitemap is a module for generating best-practice XML sitemaps that are consumed by the robots crawling your site.
9+
10+
New to XML sitemaps or SEO? Check out the [Controlling Web Crawlers](https://nuxtseo.com/learn/controlling-crawlers) guide to learn more about why you might
11+
need these.
1412

1513
<p align="center">
1614
<table>
1715
<tbody>
1816
<td align="center">
19-
<img width="800" height="0" /><br>
20-
<i>Status:</i> <a href="https://github.com/nuxt-modules/sitemap/releases/tag/v6.0.0">v6 Released 🎉</a></b> <br>
21-
<sup> Please report any issues 🐛</sup><br>
2217
<sub>Made possible by my <a href="https://github.com/sponsors/harlan-zw">Sponsor Program 💖</a><br> Follow me <a href="https://twitter.com/harlan_zw">@harlan_zw</a> 🐦 • Join <a href="https://discord.gg/275MBUBvgP">Discord</a> for help</sub><br>
23-
<img width="800" height="0" />
2418
</td>
2519
</tbody>
2620
</table>
@@ -37,8 +31,6 @@ Powerfully flexible XML Sitemaps that integrate seamlessly, for Nuxt. Previously
3731

3832
## Installation
3933

40-
💡 Need a complete SEO solution for Nuxt? Check out [Nuxt SEO](https://nuxtseo.com).
41-
4234
💡 Using Nuxt 2? Use the [nuxt-community/sitemap-module](https://github.com/nuxt-community/sitemap-module) docs.
4335

4436
Install `@nuxtjs/sitemap` dependency to your project:
@@ -47,11 +39,13 @@ Install `@nuxtjs/sitemap` dependency to your project:
4739
npx nuxi@latest module add sitemap
4840
```
4941

42+
💡 Need a complete SEO solution for Nuxt? Check out [Nuxt SEO](https://nuxtseo.com).
43+
5044
# Documentation
5145

5246
[📖 Read the full documentation](https://nuxtseo.com/sitemap) for more information.
5347

54-
### StackBlitz Demos / Reproductions
48+
### Demos
5549

5650
- [Dynamic URLs](https://stackblitz.com/edit/nuxt-starter-dyraxc?file=server%2Fapi%2F_sitemap-urls.ts)
5751
- [i18n](https://stackblitz.com/edit/nuxt-starter-jwuie4?file=app.vue)
@@ -68,4 +62,17 @@ npx nuxi@latest module add sitemap
6862

6963
## License
7064

71-
MIT License © 2022-PRESENT [Harlan Wilton](https://github.com/harlan-zw)
65+
Licensed under the [MIT license](https://github.com/nuxt-modules/sitemap/blob/main/LICENSE.md).
66+
67+
<!-- Badges -->
68+
[npm-version-src]: https://img.shields.io/npm/v/@nuxtjs/sitemap/latest.svg?style=flat&colorA=18181B&colorB=28CF8D
69+
[npm-version-href]: https://npmjs.com/package/@nuxtjs/sitemap
70+
71+
[npm-downloads-src]: https://img.shields.io/npm/dm/@nuxtjs/sitemap.svg?style=flat&colorA=18181B&colorB=28CF8D
72+
[npm-downloads-href]: https://npmjs.com/package/@nuxtjs/sitemap
73+
74+
[license-src]: https://img.shields.io/github/license/nuxt-modules/sitemap.svg?style=flat&colorA=18181B&colorB=28CF8D
75+
[license-href]: https://github.com/nuxt-modules/sitemap/blob/main/LICENSE.md
76+
77+
[nuxt-src]: https://img.shields.io/badge/Nuxt-18181B?logo=nuxt.js
78+
[nuxt-href]: https://nuxt.com

docs/content/0.getting-started/0.introduction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ and easy to miss best practices.
1919

2020
Nuxt Sitemap automatically generates the sitemap for you based on your site's content, including lastmod, image discovery and more.
2121

22-
Ready to get started? Check out the [installation guide](/docs/robots/getting-started/installation).
22+
Ready to get started? Check out the [installation guide](/docs/robots/getting-started/installation) or learn more on the [Controlling Web Crawlers](https://nuxtseo.com/learn/controlling-crawlers) guide.
2323

2424
## Features
2525

0 commit comments

Comments
 (0)