# Getting started ## Installation ### Installing MkDocs In order to install [MkDocs][], Python and `pip` - the Python package manager - need to be up and running. Assuming you are a developer and have a basic understanding of how things work and what StackOverflow is, we won't provide guidelines on setting those up. You can verify if you're already good to go with the following commands: ``` sh python --version # Python 2.7.2 pip --version # pip 1.5.2 ``` Installing and verifying MkDocs is as simple as: ``` sh pip install mkdocs && mkdocs --version # mkdocs, version 0.15.2 ``` ### Installing Material Next, assuming you have MkDocs up and running `mkdocs-material` can be installed with `pip`: ``` sh pip install mkdocs-material ``` ## Usage If you haven't already done it, creating a new documentation project is really simple in MkDocs: ``` sh mkdocs new my-project cd my-project ``` MkDocs will create the necessary files and base directory structure inside the folder `my-project`. In order to enable the theme just add the following line to the auto-generated `mkdocs.yml`: ``` yaml theme: 'material' ``` If your project is hosted on GitHub, add the repository link to the configuration. If the `repo_name` equals **GitHub**, the Material theme will add a download and star button, and display the number of stars: ``` yaml repo_name: 'GitHub' repo_url: 'https://github.com/my-github-handle/my-project' ``` MkDocs includes a development server, so you can view your changes as you go - very handy. Spin it up with the following command: ``` sh mkdocs serve ``` Now you can go to [localhost:8000](http://localhost:8000) and the Material theme should be visible. You can now start writing your documentation, or read on and customize the theme through some options. ## Options The Material theme adds some extra variables for configuration via your project's `mkdocs.yml`. See the following section for all available options. ### Adding a logo If your project has a logo, you can add it to the drawer/navigation by defining the variable `extra.logo`. Ideally, the image of your logo should have rectangular shape with a minimum resolution of 128x128. The logo will also be used as a web application icon on iOS. Simply create the folder `docs/images`, add your image and reference it via: ``` yaml extra: logo: 'images/logo.png' ``` ### Adding a version In order to add the current version next to the project banner inside the drawer, you can set the variable `extra.version`: ``` yaml extra: version: '0.1.0' ``` ### Adding a GitHub and Twitter account If you have a GitHub and/or Twitter account, you can add links to your accounts to the drawer by setting the variables `extra.author.github` and `extra.author.twitter` respectively: ``` yaml extra: author: github: 'my-github-handle' twitter: 'my-twitter-handle' ``` ### More advanced customization If you want to change the fonts or colors - you are lucky. The Material theme is built with a sophisticated asset pipeline. See [this article](/customization) for more information on advanced customization. ## Extensions MkDocs supports several [Markdown extensions][]. The following extensions are not enabled by default (see the link for which are enabled by default), so you have to switch them on explicitly. ### CodeHilite (recommended) This extensions adds code highlighting to fenced code blocks. It might not be the best code highlighter, but it works without JavaScript and on the server: ``` yaml markdown_extensions: - codehilite(css_class=code) ``` If you want more extensive highlighting, you can use a JavaScript library like [highlight.js][], which is not included in Material. See [this link][extra] for further instructions ### Permalinks In order to add [permalinks][] to the headers of your article, set the `markdown_extensions.toc.permalink` variable to a symbol, e.g. `¶`: ``` yaml markdown_extensions: - toc: permalink: '¶' ``` The symbol can be chosen freely, it can even be a WebFont icon. ### Admonition [Admonition][] is a handy extension that adds block-styled side content to your documentation, for example hints, notes or warnings. It can be enabled by setting the variable `markdown_extensions.admonition`: ``` yaml markdown_extensions: - admonition ``` In order to add a note, use the following syntax inside your article: ``` markdown !!! note Nothing to see here, move along. ``` This will print the following: !!! note Nothing to see here, move along. The Material template adds a light color for the `note` class and a red color for the `warning` class. More colors can be freely defined. ## Full example Below is a full example configuration for a mkdocs.yml: ``` yaml # Project information site_name: 'My Project' site_description: 'A short description of my project' site_author: 'John Doe' site_url: 'https://github.com/my-github-handle/my-project' # Repository repo_name: 'GitHub' repo_url: 'https://github.com/my-github-handle/my-project' # Copyright copyright: 'Copyright (c) 2016 John Doe' # Documentation and theme docs_dir: 'docs' theme: 'material' # Options extra: version: '0.1.0' logo: 'images/logo.png' author: github: 'my-github-handle' twitter: 'my-twitter-handle' # Extensions markdown_extensions: - codehilite(css_class=code) - admonition - toc: permalink: '¶' ``` [MkDocs]: http://www.mkdocs.org [Markdown extensions]: http://www.mkdocs.org/user-guide/writing-your-docs/#markdown-extensions [highlight.js]: https://highlightjs.org/ [extra]: http://www.mkdocs.org/user-guide/styling-your-docs/#customising-a-theme [permalinks]: https://en.wikipedia.org/wiki/Permalink [Admonition]: https://pythonhosted.org/Markdown/extensions/admonition.html