Skip to content

Commit

Permalink
ci: fix deploy-docs and its colors (#46)
Browse files Browse the repository at this point in the history
Signed-off-by: M. Fatih Cırıt <[email protected]>
  • Loading branch information
xmfcx authored Apr 15, 2024
1 parent ffe2423 commit 36e8979
Showing 1 changed file with 81 additions and 16 deletions.
97 changes: 81 additions & 16 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,101 @@
site_name: AWSIM document

repo_url: https://github.com/tier4/AWSIM
site_url: https://autowarefoundation.github.io/AWSIM
repo_url: https://github.com/autowarefoundation/AWSIM
edit_uri: https://github.com/autowarefoundation/AWSIM/tree/main/docs

theme:
name: material
palette:
primary: indigo
features:
- navigation.expand
- navigation.indexes
- navigation.instant
- navigation.sections
- navigation.tabs.sticky
- navigation.top
- navigation.footer
- content.tabs.link
icon:
logo: fontawesome/solid/car
repo: fontawesome/brands/github
language: en
palette:
- scheme: default
primary: light-green
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- scheme: slate
primary: grey
accent: indigo
toggle:
icon: material/weather-night
name: Switch to light mode

extra:
font:
text: Roboto
code: Roboto Mono
version:
provider: mike

extra_css:
- assets/css/extra.css
- https://use.fontawesome.com/releases/v5.15.4/css/all.css

extra_javascript:
- assets/js/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js

plugins:
- awesome-pages
- exclude:
regex:
- ^(?!(.*/)?assets/).*\.(?!(.*\.)?md|(.*\.)?svg|(.*\.)?png|(.*\.)?gif|(.*\.)?jpg).*$
- ^(.*/)?[^.]*$
- macros
- mkdocs-video
- same-dir
- search

markdown_extensions:
- tables
- abbr
- admonition
- pymdownx.superfences
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- codehilite:
guess_lang: false
- fontawesome_markdown
- footnotes
- md_in_html
- mdx_math
- mdx_truly_sane_lists:
nested_indent: 2
- plantuml_markdown:
server: http://www.plantuml.com/plantuml
format: svg
- pymdownx.arithmatex:
generic: true

extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight
- pymdownx.snippets:
auto_append:
- includes/abbreviations.md
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- toc:
permalink: "#"
toc_depth: 3
- tables

nav:
- Home: index.md
Expand Down

0 comments on commit 36e8979

Please sign in to comment.