bsc

Comprehensive codebase and cou...
Log | Files | Refs | README | LICENSE

commit 03d292a58585a95a4e7ba94fefb367e2a0b24130
parent c78e0958192d8afffae34229c1fca26193aef62b
Author: Amit Dutta <amitdutta4255@gmail.com>
Date:   Fri, 29 May 2026 22:35:22 +0530

Initialize MkDocs configuration

Added configuration for MkDocs site including project details, theme settings, plugins, and social links.
Diffstat:
Amkdocs.yml | 103+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 103 insertions(+), 0 deletions(-)

diff --git a/mkdocs.yml b/mkdocs.yml @@ -0,0 +1,103 @@ +# Project information +site_name: BSc Code Index · v3.3.2 +site_description: C programming assignments, indexed and documented. +site_url: https://amit.is-a.dev + +# Repository +repo_url: https://github.com/notamitgamer/bsc +repo_name: notamitgamer/bsc +edit_uri: edit/main/docs-new/ + +# Directory configuration +docs_dir: ./docs-new + +# Configuration +theme: + name: material + custom_dir: ./docs-new/overrides + logo: ./stylesheets/logo.svg + font: + text: Lexend + code: Fira Code + features: + - navigation.sections + - navigation.indexes + - navigation.top + - navigation.footer + - toc.follow + - search.highlight + - search.suggest + - content.code.copy + - content.code.annotate + - navigation.path + - search.share + - content.tooltips + - content.action.edit + - content.action.view + - header.autohide + - navigation.instant + - announce.dismiss + palette: + - media: "(prefers-color-scheme: light)" + scheme: default + primary: deep purple + accent: purple + toggle: + icon: material/weather-night + name: Switch to dark mode + - media: "(prefers-color-scheme: dark)" + scheme: slate + primary: black + accent: orange + toggle: + icon: material/weather-sunny + name: Switch to light mode + favicon: ./stylesheets/bsc.png + logo: ./stylesheets/logo.svg +extra_css: + - ./stylesheets/extra.css + +# Plugins +plugins: + - search: + separator: '[\s\-\.]+' + - awesome-pages + - tags + +# Extensions +markdown_extensions: + - attr_list + - admonition + - pymdownx.details + - pymdownx.highlight: + anchor_linenums: true + line_spans: __span + pygments_lang_class: true + - pymdownx.inlinehilite + - pymdownx.superfences + - pymdownx.tabbed: # <-- add this block right after superfences + alternate_style: true + - tables + - toc: + permalink: true + +copyright: > + Copyright &copy; 2025–2026 + <a href="https://amit.is-a.dev" target="_blank">amit.is-a.dev</a> / + <a href="https://github.com/notamitgamer" target="_blank">notamitgamer</a> + <br> + <a href="https://github.com/notamitgamer/bsc/blob/main/LICENSE" target="_blank">MIT License</a> + +# Additional configuration +extra: + generator: false + announce: "" + social: + - icon: fontawesome/brands/github + link: https://github.com/notamitgamer + - icon: fontawesome/brands/discord + link: https://discord.com/users/1274721760088166495 + - icon: fontawesome/brands/bluesky + link: https://bsky.app/profile/amit.is-a.dev + - icon: fontawesome/brands/x-twitter + link: https://x.com/notamitgamer
© notamitgamer • Site Built: 2026-07-21 13:58:23 UTC • git-mirror commit: 1037f62 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror