From 15d1fd5b427089f160ae1577e8577c55d471ffd3 Mon Sep 17 00:00:00 2001 From: Manuel Da Pena <65864237+mdapena@users.noreply.github.com> Date: Sat, 16 Dec 2023 15:41:23 -0400 Subject: [PATCH] Update mkdocs.yml --- mkdocs.yml | 83 +++++++++++++++++++++++++++++++----------------------- 1 file changed, 47 insertions(+), 36 deletions(-) diff --git a/mkdocs.yml b/mkdocs.yml index 1d6b7c3..2a07519 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,6 +1,20 @@ +# Project information site_name: Pyventus -site_description: A modern and robust Python package for event-driven programming. Define, emit, and orchestrate events with ease using customizable event emitters and flexible responses. +site_url: https://mdapena.github.io/pyventus/ +site_author: Manuel Da Pena +site_description: >- + A modern and robust Python package for event-driven programming. Define, emit, and + orchestrate events with ease using customizable event emitters and flexible responses. +# Repository +repo_name: mdapena/pyventus +repo_url: https://github.com/mdapena/pyventus + +# Copyright +copyright: | + Copyright © 2023 Manuel Da Pena + +# Configuration theme: name: material language: en @@ -36,32 +50,15 @@ theme: - content.tooltips - content.code.annotate -repo_name: mdapena/pyventus -repo_url: https://github.com/mdapena/pyventus - -markdown_extensions: - - attr_list - - md_in_html - - pymdownx.arithmatex: - generic: true - - pymdownx.highlight: - anchor_linenums: true - - pymdownx.inlinehilite - - pymdownx.snippets: - base_path: - - !relative $docs_dir - - admonition - - footnotes - - pymdownx.details - - pymdownx.superfences - - pymdownx.mark - - abbr - - pymdownx.emoji: - emoji_index: !!python/name:material.extensions.emoji.twemoji - emoji_generator: !!python/name:material.extensions.emoji.to_svg - - pymdownx.tabbed: - alternate_style: true +# Customization +extra: + social: + - icon: fontawesome/brands/linkedin + link: https://ve.linkedin.com/in/manuel-da-pena/en + - icon: fontawesome/brands/github + link: https://github.com/mdapena +# Plugins plugins: - search - git-revision-date-localized: @@ -88,7 +85,31 @@ plugins: show_signature_annotations: true show_category_heading: true +# Extensions +markdown_extensions: + - attr_list + - md_in_html + - pymdownx.arithmatex: + generic: true + - pymdownx.highlight: + anchor_linenums: true + - pymdownx.inlinehilite + - pymdownx.snippets: + base_path: + - !relative $docs_dir + - admonition + - footnotes + - pymdownx.details + - pymdownx.superfences + - pymdownx.mark + - abbr + - pymdownx.emoji: + emoji_index: !!python/name:material.extensions.emoji.twemoji + emoji_generator: !!python/name:material.extensions.emoji.to_svg + - pymdownx.tabbed: + alternate_style: true +# Page tree nav: - Pyventus: index.md - Getting Started: getting-started.md @@ -113,13 +134,3 @@ nav: - RQ Event Emitter: api/emitters/rq-event-emitter.md - Contributing: contributing.md - Release Notes: release-notes.md - -extra: - social: - - icon: fontawesome/brands/linkedin - link: https://ve.linkedin.com/in/manuel-da-pena/en - - icon: fontawesome/brands/github - link: https://github.com/mdapena - -copyright: | - Copyright © 2023 Manuel Da Pena