Skip to content

Commit 3cf66ba

Browse files
committed
Fixed some grammar issues
1 parent b77c441 commit 3cf66ba

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

Readme.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -93,18 +93,18 @@ The appsettings.json file has a lot of options to customize the content of the b
9393
| GithubSponsorName | string | Enables the "Github Sponsor" button which redirects to GitHub. Only pass in the user name instead of the url. |
9494

9595
## Storage Provider
96-
Currently there are 4 Storage-Provider:
96+
Currently, there are 4 Storage-Provider:
9797
* InMemory - Basically a list holding your data (per request). If the User hits a hard reload, the data is gone.
9898
* RavenDb - As the name suggests for RavenDb. RavenDb automatically creates all the documents, if a database name is provided.
99-
* Sqlite - Based on EF Core, so it can be easily adapted for other Sql Dialects. The tables are automatically created.
100-
* SqlServer - Based on EF Core, so it can be easily adapted for other Sql Dialects. The tables are automatically created.
99+
* Sqlite - Based on EF Core, it can be easily adapted for other Sql Dialects. The tables are automatically created.
100+
* SqlServer - Based on EF Core, it can be easily adapted for other Sql Dialects. The tables are automatically created.
101101

102-
The default (when you clone the repository) is the `InMemory` option. That means everytime you restart the service, all posts and related objects are gone.
102+
The default (when you clone the repository) is the `InMemory` option. That means every time you restart the service, all posts and related objects are gone.
103103

104104
## Comment Section
105-
For comments the blog is using [giscus](https://giscus.app/) or [disqus](https://disqus.com/).
105+
For comments, the blog is using [giscus](https://giscus.app/) or [disqus](https://disqus.com/).
106106

107-
**Note**: Please only register one service / provide the configuration for one node. The given configuration shows both only for demonstrational purposes.
107+
**Note**: Please only register one service or provide the configuration for one of the nodes. The given configuration shows both only for demonstrational purposes.
108108
If multiple comment plugins are configured at the same time a warning will be displayed under the blog post itself.
109109

110110
### Giscus
@@ -129,7 +129,7 @@ In short:
129129
async>
130130
</script>
131131
```
132-
Now you can copy/paste those information into the appsettings.json. With the given information abobe your appsettings.json looks like this:
132+
Now you can copy/paste that information into the appsettings.json. With the given information above your appsettings.json looks like this:
133133
```json
134134
"Giscus": {
135135
"Repository": "your_username/reponame",
@@ -140,31 +140,31 @@ Now you can copy/paste those information into the appsettings.json. With the giv
140140
```
141141

142142
### Disqus
143-
For disqus you only need the shortname (site-name) which you can find for example under your [home-tab](https://disqus.com/home/).
143+
For disqus you only need the short name (site-name) which you can find for example under your [home-tab](https://disqus.com/home/).
144144

145145
## Authorization
146146
There is only one real mechanism enabled via Auth0. For more information go to: https://auth0.com/docs/applications
147147

148-
The main advantage of Auth0 is the easy configurable dashboard on their website.
148+
The main advantage of Auth0 is the easily configurable dashboard on their website.
149149

150150
For testing purposes you can use `services.UseDummyAuthentication();`. This allows every user, who presses Login, to be logged in.
151151

152152
## Donations
153-
The blog software allows you to integrate via different micro-transaction services. The following chapter will show you how to setup donations.
153+
The blog software allows you to integrate via different micro-transaction services. The following chapter will show you how to set up donations.
154154

155155
### Ko-fi
156-
You can use [Ko-fi](https://Ko-fi.com/) as payment service to receive donations. To aquire the `KofiToken` as seen in the config above, head to [wdigets page](https://Ko-fi.com/manage/widgets), click on "Ko-fi Button".
156+
You can use [Ko-fi](https://Ko-fi.com/) as a payment service to receive donations. To acquire the `KofiToken` as seen in the config above, head to [widgets page](https://Ko-fi.com/manage/widgets), click on "Ko-fi Button".
157157
Now choose "Image" as type. In the field below under `Copy & Paste Code` you see an `<a href='https://ko-fi.com/XYZ'` tag. Just take the `XYZ` part and put it into `KofiToken`.
158158

159159
### GitHub Sponsor
160-
Enables the usage of [GitHub Sponsors](https://github.com/sponsors) as payment service to receive donations. Only pass in your username. The button will use the following url: `https://github.com/sponsors/{your-user-name}`.
160+
Enables the usage of [GitHub Sponsors](https://github.com/sponsors) as a payment service to receive donations. Only pass in your username. The button will use the following url: `https://github.com/sponsors/{your-user-name}`.
161161

162162
## Search Engine Optimization (SEO)
163-
The blog includes some of the most important tags to get indexed by a crawler. Furthermore some aspects of the Open Graph specification are implemented.
163+
The blog includes some of the most important tags to get indexed by a crawler. Furthermore, some aspects of the Open Graph specification are implemented.
164164

165165
### Robots.txt
166-
In the wwwroot/ you can find a default robots.txt. It allows that the site gets completely indexed. If you want to tweak that behavior feel free.
167-
Also you can provide a sitemap.xml to get a better ranking. The blog can create a sitemap.xml on its own. For that login and click on the `Admin` button in the navigation bar and afterwards on `Sitemap`. There you can let the blog create a new one for you. This is especially helpful after you created a new blog post to make easier for indexer like Google.
166+
In the wwwroot/ you can find a default robots.txt. It allows the site gets completely indexed. If you want to tweak that behavior - feel free.
167+
Also, you can provide a sitemap.xml to get a better ranking. The blog can create a sitemap.xml on its own. For that log in and click on the `Admin` button in the navigation bar and afterward on `Sitemap`. There you can let the blog create a new one for you. This is especially helpful after you created a new blog post to make it easier for indexers like Google.
168168

169169
### Open Graph Tags
170170
To get better results when for example shared via LinkedIn some of the `<meta property="og:tag">` tags are implemented.
@@ -179,12 +179,12 @@ The following tags are set depending on the page:
179179
| og:type | article | article |
180180
| og:description | Short description in plain text (defined in Introduction) | Short Description of Blog Post in plain text |
181181

182-
Furthermore the following tags are set:
182+
Furthermore, the following tags are set:
183183

184184
| Tag | Index | Display Blog Post |
185185
| ---------------------------------------- | ------------------------------------ | ----------------------------- |
186186
| Title of the web page | Defined in AppConfiguration.BlogName | Title of the blogpost |
187187
| &lt;meta name="keyword" content="" /&gt; | not set | Tags defined in the Blog Post |
188188

189189
## RSS Feed
190-
This blog also offers a RSS feed ([RSS 2.0 specification](https://validator.w3.org/feed/docs/rss2.html)), which can be consumed by your users or programs like feedly. Just append `feed.rss` to your url or click on the RSS feed icon in the navigation bar to get the feed. The RSS feed does not expose the whole content of a given blog post but it's title and short description including some other tags like preview image, publishing date and so on.
190+
This blog also offers an RSS feed ([RSS 2.0 specification](https://validator.w3.org/feed/docs/rss2.html)), which can be consumed by your users or programs like Feedly. Just append `feed.rss` to your URL or click on the RSS feed icon in the navigation bar to get the feed. The RSS feed does not expose the whole content of a given blog post but its title and short description including some other tags like preview image, publishing date and so on.

0 commit comments

Comments
 (0)