github.com/vektra/mockery/v2@v2.43.1/mkdocs.yml (about)

     1  site_name: mockery
     2  site_url: https://vektra.github.io/mockery/
     3  site_description: >-
     4    Create mock implementations of your Golang interfaces using mockery and testify.
     5  
     6  repo_name: vektra/mockery
     7  repo_url: https://github.com/vektra/mockery
     8  
     9  theme:
    10    name: material
    11    custom_dir: overrides
    12    icon:
    13      logo: fontawesome/brands/golang
    14    palette:
    15      # Palette toggle for light mode
    16      - media: "(prefers-color-scheme: light)"
    17        scheme: default
    18        primary: light blue
    19        toggle:
    20          icon: material/brightness-7
    21          name: Switch to dark mode
    22      # Palette toggle for dark mode
    23      - media: "(prefers-color-scheme: dark)"
    24        scheme: slate
    25        primary: light blue
    26        toggle:
    27          icon: material/brightness-4
    28          name: Switch to light mode
    29    features:
    30      - content.code.annotate
    31      - content.code.copy
    32      - content.action.edit
    33      - content.action.view
    34      - navigation.indexes
    35      - navigation.sections
    36      - navigation.tracking
    37      - toc.follow
    38  markdown_extensions:
    39    - admonition
    40    - attr_list
    41    - md_in_html
    42    - pymdownx.emoji:
    43        emoji_index: !!python/name:material.extensions.emoji.twemoji
    44        emoji_generator: !!python/name:material.extensions.emoji.to_svg
    45    - pymdownx.details
    46    - pymdownx.highlight:
    47        anchor_linenums: true
    48        auto_title: true
    49    - pymdownx.inlinehilite
    50    - pymdownx.magiclink
    51    - pymdownx.superfences
    52    - pymdownx.tabbed:
    53        alternate_style: true 
    54    - toc:
    55        permalink: true
    56    
    57  
    58  nav:
    59    - Home: index.md
    60    - Getting Started:
    61      - Installation: installation.md
    62      - Configuration: configuration.md
    63      - Running: running.md
    64      - Examples: examples.md
    65    - Features: features.md
    66    - Notes: 
    67      - FAQ: notes.md
    68      - Changelog: changelog.md
    69      - Migrating to Packages: migrating_to_packages.md
    70  
    71  extra_css:
    72    - stylesheets/extra.css
    73  
    74  extra_javascript:
    75    - https://unpkg.com/tablesort@5.3.0/dist/tablesort.min.js
    76    - javascripts/tablesort.js
    77  
    78  extra:
    79    version:
    80      provider: mike
    81    analytics:
    82      provider: google
    83      property: G-0ZGMQGZGRN
    84  
    85  plugins:
    86  - glightbox
    87  - mike:
    88      alias_type: symlink
    89      canonical_version: latest
    90  - open-in-new-tab
    91  - search
    92  - social
    93  - typeset:
    94      enabled: true