fix 404 page links (#501)

* fix 404 page links

Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>

* fix deleted wiki page link and linkchecker command

Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
pull/505/head
Nicolas MASSART 4 years ago committed by GitHub
parent 5c8545bc08
commit 56150a6a41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CONTRIBUTING.md
  2. 5
      custom_theme/404.html
  3. 4
      package.json

@ -17,7 +17,6 @@ to propose changes to this document in a pull request.
* [Reporting bugs in the documentation]
* [Submitting a documentation enhancement suggestion]
* [Documentation style guide]
* [Pull request labels](https://wiki.hyperledger.org/display/BESU/Pull+Request+Labels)
* [Security](SECURITY.md)
### Other important information

@ -18,8 +18,7 @@
</p>
<p style="text-align: center">
If you think we made a mistake and deleted a page that should be here, then please tell us on
<a href="{{config.extra.support.gitter}}">{{config.site_name}} chat channel</a> or create an issue in
<a href="{{config.extra.support.issues}}">{{config.site_name}} Jira</a>.
<a href="{{config.extra.support.chat}}">{{config.site_name}} chat channel</a> or <a href="{{config.extra.support.issues}}">create an issue</a>.
</p>
{% endblock %}
{% endblock %}

@ -7,9 +7,9 @@
"doc": "docs"
},
"scripts": {
"test:links:check": "find . -name \\*.md ! -path \"./node_modules/*\" -exec ./node_modules/markdown-link-check/markdown-link-check -q -c CI/linkchecker/link_check_conf.json {} \\; > linkchecker.out 2>&1",
"test:links:check": "find . -name \\*.md ! -path \"./node_modules/*\" -exec ./node_modules/markdown-link-check/markdown-link-check -q -c CI/linkchecker/link_check_conf.json {} \\; 2>&1 | tee linkchecker.out",
"test:links:display": "cat linkchecker.out",
"test:links:verify": "! grep 'ERROR:' linkchecker.out",
"test:links:verify": "! grep -n '[✖]\\|ERROR' ./linkchecker.out",
"test:links": "npm run test:links:check && npm run test:links:display && npm run test:links:verify",
"test": "npm run test:links"
},

Loading…
Cancel
Save