From a983c5a85098ea9611a07cef4a40b5b0a1bec112 Mon Sep 17 00:00:00 2001 From: Crispae Date: Tue, 21 Nov 2023 21:30:14 +0100 Subject: [PATCH] documentation added --- docs/index.md | 3 +++ mkdocs.yml | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 docs/index.md create mode 100644 mkdocs.yml diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..4c317d9 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,3 @@ +# PBPK ontology + +This repository contains an ontology designed for modeling Physiologically Based Pharmacokinetics (PBPK), a method used in pharmacology to predict drug behavior in the body. The ontology aims to represent the complex interactions between physiological systems, drugs, and their pharmacokinetics. \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..5d5e135 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,56 @@ +site_name: pkonto +theme: + name: material + features: + - navigation.tabs + - navigation.sections + - toc.integrate + - navigation.top + - search.suggest + - search.highlight + - content.tabs.link + - content.code.annotation + - content.code.copy + language: en + palette: + - scheme: default + toggle: + icon: material/toggle-switch-off-outline + name: Switch to dark mode + primary: teal + accent: purple + - scheme: slate + toggle: + icon: material/toggle-switch + name: Switch to light mode + primary: teal + accent: lime + +plugins: + - social + +extra: + social: + - icon: fontawesome/brands/github-alt + link: https://github.com/Crispae + - icon: fontawesome/brands/twitter + link: https://twitter.com/sauravk76534078 + - icon: fontawesome/brands/linkedin + link: https://www.linkedin.com/in/saurav-kumar-51593a1b9/ + +markdown_extensions: + - pymdownx.highlight: + anchor_linenums: true + - pymdownx.inlinehilite + - pymdownx.snippets + - admonition + - pymdownx.arithmatex: + generic: true + - footnotes + - pymdownx.details + - pymdownx.superfences + - pymdownx.mark + - attr_list + - pymdownx.emoji: + emoji_index: !!python/name:materialx.emoji.twemoji + emoji_generator: !!python/name:materialx.emoji.to_svg \ No newline at end of file