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

Update MkDocs and documentation preparing for v3.0 release #2396

Closed
Closed
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
157 changes: 157 additions & 0 deletions doc/website/images/ekxide-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 8 additions & 6 deletions doc/website/overrides/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
{% include ".icons/material/arrow-left.svg" %}
</div>
<div class="md-footer__title">
<span class="md-footer__direction">
{{ lang.t("footer.previous") }}
</span>
<div class="md-ellipsis">
<span class="md-footer__direction">
{{ lang.t("footer.previous") }}
</span>
{{ page.previous_page.title }}
</div>
</div>
Expand All @@ -21,10 +21,10 @@
{% if page.next_page %}
<a href="{{ page.next_page.url | url }}" class="md-footer__link md-footer__link--next" rel="next">
<div class="md-footer__title">
<span class="md-footer__direction">
{{ lang.t("footer.next") }}
</span>
<div class="md-ellipsis">
<span class="md-footer__direction">
{{ lang.t("footer.next") }}
</span>
{{ page.next_page.title }}
</div>
</div>
Expand Down Expand Up @@ -65,6 +65,8 @@
src="{{ base_url }}/images/bosch-logo.png" width="100px"></img></a><br>
<a href="https://www.apex.ai/" target="_blank" rel="noopener" title="Apex.AI Inc."><img
src="{{ base_url }}/images/apex-logo.webp" width="100px"></img></a><br>
<a href="https://www.ekxide.io/" target="_blank" rel="noopener" title="ekxide IO GmbH"><img
src="{{ base_url }}/images/ekxide-logo.svg" width="100px"></img></a><br>
</div>
</div>
<div class="md-footer-meta__inner md-grid">
Expand Down
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ markdown_extensions:
- markdown_include.include
- admonition
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tasklist:
custom_checkbox: true
plugins:
Expand Down
14 changes: 7 additions & 7 deletions tools/website/export-docu-to-website.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
# SPDX-License-Identifier: Apache-2.0

# Necessary tools:
# mkdocs-awesome-pages-plugin, v2.6.0
# mkdocs-autolinks-plugin, v0.4.0 (with svg patch)
# mkdocs-material, v8.1.3-insiders-4.5.0
# markdown-include, v0.6.0
# mkdocs, v1.2.3
# Doxygen, v1.9.1
# mkdocs-awesome-pages-plugin, v2.10.1
# mkdocs-autolinks-plugin, v0.7.1
# mkdocs-material, v9.5.49
# markdown-include, v0.8.1
# mkdocs, v1.6.1
# Doxygen, v1.8.17
# doxybook2, v1.3.3
# mike, v1.0.0
# mike, v2.1.3

set -e

Expand Down
Loading