Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix http links and make linkchecker more robust #465

Merged
merged 2 commits into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ build: ## Build site for deployment
@rm -rf .env

.PHONY: tests
tests: docker-setup
tests: docker-setup clean
tests: ## Serve, then run link checker. Times out after 5 minutes.
-@docker-compose pull linkchecker || docker-compose build linkchecker
@echo COMMAND="-u http://jekyll:4998/ -b \"\" -p 4998 serve" > .env
Expand Down
4 changes: 2 additions & 2 deletions docs/_includes/home_links.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<h3>Docs</h3>
<p>Detailed Bluetooth Low Energy (BLE) and HTTP Interface Specifications.</p>
<i class="fab fa-bluetooth" style="color: blue"></i>
<a href="{% link specs/ble_versions/ble_2_0.md %}">BLE Specs →</a>
<a href="{% link specs/ble_versions/ble_2_0.md %}">BLE Spec→</a>
<br />
<i class="fas fa-wifi"></i>
<a href="/http">HTTP Spec →</a>
<a href="{{ site.baseurl }}/http">HTTP Spec →</a>
</div>

<div class="unit one-third">
Expand Down
Loading