fix typos
This commit is contained in:
committed by
Umputun
parent
98bfc7f5f5
commit
2b15e9291f
@@ -1,6 +1,6 @@
|
||||
---
|
||||
layout: redirect.njk
|
||||
destination: /docs/configuration/frondend/
|
||||
destination: /docs/configuration/frontend/
|
||||
title: Configuration
|
||||
order: 200
|
||||
---
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
title: Development Environmetn
|
||||
title: Development Environment
|
||||
menuTitle: Environment
|
||||
parent: Contributing
|
||||
order: 300
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
title: Backend Development Guidlines
|
||||
title: Backend Development Guidelines
|
||||
menuTitle: Backend
|
||||
key: Backend Guidelines
|
||||
parent: Guidelines
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
title: Frontend Development Guidlines
|
||||
title: Frontend Development Guidelines
|
||||
menuTitle: Frontend
|
||||
key: Frontend Guidelines
|
||||
parent: Guidelines
|
||||
|
||||
@@ -16,11 +16,11 @@ All heavy REST calls cached internally in LRU cache limited by `CACHE_MAX_ITEMS`
|
||||
|
||||
User's activity throttled globally (up to 1000 simultaneous requests) and limited locally (per user, usually up to 10 req/sec). Request timeout set to 60 seconds.
|
||||
|
||||
Admin authentication (`--admin-password` set) allows to hit Remark42 API without social login and with admin privileges. Adds basic-auth for username: admin, password: `${ADMIN_PASSWD}`.
|
||||
Admin authentication (`--admin-password` set) allows hitting Remark42 API without social login and with admin privileges. Adds basic-auth for username: admin, password: `${ADMIN_PASSWD}`.
|
||||
|
||||
User can vote for the comment multiple times but only to change the vote. Double-voting not allowed.
|
||||
|
||||
User can edit comments in 5 mins (configurable) window after creation.
|
||||
User can edit comments in 5 minutes (configurable) window after creation.
|
||||
User ID hashed and prefixed by oauth provider name to avoid collisions and potential abuse.
|
||||
|
||||
All avatars resized and cached locally to prevent rate limiters from oauth providers, part of `go-pkgz/auth` functionality.
|
||||
|
||||
@@ -58,7 +58,7 @@ After that place the code snippet right after config.
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
::: note 💡
|
||||
**Note that:** You can place the config with the snippet in any place of the HTML code of your site. If it closer to start of the HTML (for example in `<head>`) it will start loading sooner and show comments faster.
|
||||
**Note that:** You can place the config with the snippet in any place of the HTML code of your site. If it is closer to start of the HTML (for example in `<head>`) it will start loading sooner and show comments faster.
|
||||
:::
|
||||
|
||||
Put the next code snippet on a page of your site where you want to have comments:
|
||||
@@ -69,4 +69,4 @@ Put the next code snippet on a page of your site where you want to have comments
|
||||
|
||||
After that widget will be rendered inside this node.
|
||||
|
||||
If you want to set this up on a Single Page App, see [appropriate doc page](https://github.com/umputun/remark42/blob/master/docs/latest/spa.md).
|
||||
If you want to set this up on a Single Page App, see [appropriate doc page](https://github.com/umputun/remark42/blob/master/docs/spa.md).
|
||||
|
||||
Reference in New Issue
Block a user