Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1.13 KB

README.md

File metadata and controls

40 lines (27 loc) · 1.13 KB

My Blog

My technical blog for sharing ideas, documentations and proTipes. MkDocs Material framework is used for creating this repo.

Setup Instruction.

Refer to MkDocs Material website to get started with the setps or follow the guide below.

  • Create python virtual environment
python -m venv .my-blog
source .my-blog/bin/activate
  • install mkdocs-material using pip
pip install mkdocs-material
pip install --upgrade pip
  • After the installation, create site using following command. It will create docs/ folder and mkdocs.yaml file in your github repo.
mkdocs new .
  • You can now follow the guides given on mkdocs material documentation to customize it according to your preference or copy my format in mkdocs.yaml.
  • finally bundle and preview your website using mkdocs serve command.