Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
TrevorSchirmer committed Sep 27, 2024
2 parents 4b10ead + d0cd968 commit 8cc808c
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ jobs:
with:
key: ${{ github.ref }}
path: .cache
- run: pip install mkdocs
- run: pip install mkdocs-material
- run: pip install pillow cairosvg
- run: pip install mkdocs-glightbox
- run: pip install mkdocs-material[imaging]
- run: sudo apt-get install imagemagick pngquant
- run: find . -name '*.png' -execdir bash -c 'mogrify -resize 750x "$1"' - {} \;
- run: find . -name '*.png' -execdir bash -c 'pngquant "$1" --ext .png --force' - {} \;
- run: mkdocs gh-deploy --force
6 changes: 6 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"MD013": false,
"MD033": {
"allowed_elements": [ "iframe"]
}
}
19 changes: 16 additions & 3 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,19 @@ extra_css:
- stylesheets/extra.css
site_name: Apollo Docs
site_url: https://apolloautomation.github.io/
repo_url: https://github.com/ApolloAutomation/docs
edit_uri: https://github.com/ApolloAutomation/docs/edit/main/docs


use_directory_urls: true
theme:
logo: assets/Apollo_Square.png
favicon: assets//favicon.png
name: material
custom_dir: overrides
features:
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.path
- navigation.instant
- navigation.instant.progress
Expand All @@ -19,6 +24,8 @@ theme:
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.edit
- content.code.copy
- content.code.copy
language: en
palette:
Expand All @@ -36,8 +43,14 @@ theme:
accent: green

plugins:
- social
- search
- glightbox:
draggable: false
- search
- social:
cards_layout_options:
background_color: "#111111"
color: "#daa520"
font_family: Figtree

extra:
social:
Expand Down

0 comments on commit 8cc808c

Please sign in to comment.