* make remark access all directories
* detailed fix after autofix by remark lint
* cross check autofix for this set of files
* crosscheck more files
* crosschecking and small fixes
* crosscheck autofixed md files
##### Summary
<!--- Describe the change below, including rationale and design decisions -->
Replaces links to wiki pages with links to the respective markdown files in the repo. The files with the updates in this PR are not MD files.
Fixes#4650
<!--- HINT: Include "Fixes #nnn" if you are fixing an existing issue -->
##### Component Name
<!--- Write the short name of the module or plugin below -->
##### Additional Information
<!--- Include additional information to help people understand the change here -->
<!--- A step-by-step reproduction of the problem is helpful if there is no related issue -->
<!--- Paste log output below, e.g. before and after your change -->
```paste below
```
##### Summary
<!--- Describe the change below, including rationale and design decisions -->
Create changelog based on GitHub labels
<!--- HINT: Include "Fixes #nnn" if you are fixing an existing issue -->
##### Component Name
<!--- Write the short name of the module or plugin below -->
GitHub management
##### Additional Information
<!--- Include additional information to help people understand the change here -->
<!--- A step-by-step reproduction of the problem is helpful if there is no related issue -->
Moving old manually created changelog to HISTORICAL_CHANGELOG.md and using command below to create changelog based on github issues, PRs, and labels. This is a preview and in the near future this will be automated and running daily in cron.
<!--- Paste log output below, e.g. before and after your change -->
```sh
docker run -it -v "$(pwd)":/project markmandel/github-changelog-generator:latest \
--user "netdata" \
--project "netdata" \
--token "${GITHUB_TOKEN}" \
--since-tag "v1.10.0" \
--unreleased-label "**Next release**" \
--no-compare-link \
--exclude-labels duplicate,question,invalid,wontfix,discussion,documentation
```